altair-express-middleware 5.0.21 → 5.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/example/index.js +1 -0
- package/build/index.js +1 -0
- package/package.json +27 -32
package/build/example/index.js
CHANGED
package/build/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,50 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "altair-express-middleware",
|
|
3
|
-
"version": "5.0.21",
|
|
4
3
|
"description": "Express middleware for altair graphql client",
|
|
5
|
-
"
|
|
6
|
-
"types": "./build/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"test": "echo \"Error: no test specified\" && exit 0",
|
|
9
|
-
"prepare-dist": "node scripts/prepare_dist.js",
|
|
10
|
-
"declarations": "tsc --declaration",
|
|
11
|
-
"prepare": "npm run declarations",
|
|
12
|
-
"example": "nodemon example/index.ts"
|
|
13
|
-
},
|
|
14
|
-
"engines": {
|
|
15
|
-
"node": ">= 12"
|
|
16
|
-
},
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/altair-graphql/altair.git"
|
|
20
|
-
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"altair",
|
|
23
|
-
"graphql",
|
|
24
|
-
"express",
|
|
25
|
-
"middleware"
|
|
26
|
-
],
|
|
4
|
+
"version": "5.0.23",
|
|
27
5
|
"author": "Samuel Imolorhe <altair@sirmuel.design> (https://sirmuel.design)",
|
|
28
|
-
"
|
|
29
|
-
"bugs": {
|
|
30
|
-
"url": "https://github.com/altair-graphql/altair/issues"
|
|
31
|
-
},
|
|
32
|
-
"homepage": "https://github.com/altair-graphql/altair#readme",
|
|
6
|
+
"bugs": "https://github.com/altair-graphql/altair/issues",
|
|
33
7
|
"dependencies": {
|
|
34
|
-
"altair-static": "^5.0.
|
|
8
|
+
"altair-static": "^5.0.23",
|
|
35
9
|
"express": "^4.16.2"
|
|
36
10
|
},
|
|
37
11
|
"devDependencies": {
|
|
38
12
|
"@types/express": "^4.11.1",
|
|
39
13
|
"@types/node": "^14.14.41",
|
|
40
|
-
"eslint-config-altair": "^5.0.
|
|
14
|
+
"eslint-config-altair": "^5.0.23",
|
|
41
15
|
"nodemon": "^2.0.2",
|
|
42
16
|
"ts-node": "^8.5.4",
|
|
43
|
-
"typescript": "
|
|
17
|
+
"typescript": "4.9.5"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">= 12"
|
|
44
21
|
},
|
|
45
22
|
"funding": {
|
|
46
23
|
"type": "opencollective",
|
|
47
24
|
"url": "https://opencollective.com/altair"
|
|
48
25
|
},
|
|
49
|
-
"gitHead": "
|
|
26
|
+
"gitHead": "3d5b694bb3f4f69589f6009bc37d1a03479d32ae",
|
|
27
|
+
"homepage": "https://github.com/altair-graphql/altair#readme",
|
|
28
|
+
"keywords": [
|
|
29
|
+
"altair",
|
|
30
|
+
"express",
|
|
31
|
+
"graphql",
|
|
32
|
+
"middleware"
|
|
33
|
+
],
|
|
34
|
+
"license": "MIT",
|
|
35
|
+
"main": "./build/index.js",
|
|
36
|
+
"repository": "altair-graphql/altair.git",
|
|
37
|
+
"scripts": {
|
|
38
|
+
"declarations": "tsc --declaration",
|
|
39
|
+
"example": "nodemon example/index.ts",
|
|
40
|
+
"prepare": "npm run declarations",
|
|
41
|
+
"prepare-dist": "node scripts/prepare_dist.js",
|
|
42
|
+
"test": "echo \"Error: no test specified\" && exit 0"
|
|
43
|
+
},
|
|
44
|
+
"types": "./build/index.d.ts"
|
|
50
45
|
}
|