-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.24 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@cleartax/apollo-server-plugin-introspection-auth",
"version": "1.1.0",
"description": "An Apollo Server plugin to allow introspection only via authenticated requests",
"keywords": [
"apollo-server",
"apollo-server-plugin",
"apollo-server-express",
"plugins"
],
"homepage": "https://github.com/cleartax/apollo-server-plugin-introspection-auth#readme",
"bugs": {
"url": "https://github.com/cleartax/apollo-server-plugin-introspection-auth/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cleartax/apollo-server-plugin-introspection-auth.git"
},
"license": "MIT",
"author": "ClearTax Engineering <[email protected]>",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"sideEffects": false,
"scripts": {
"build:cjs": "tsc --build tsconfig.cjs.json",
"build:es": "tsc --build tsconfig.es.json",
"build": "npm run build:es && npm run build:cjs",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"prebuild": "rm -rf dist",
"prepublishOnly": "npm-audit-ok && npm run build && package-ok",
"test": "jest"
},
"engines": {
"node": ">= 12"
},
"maintainers": [
"Aditi Mohanty <[email protected]>"
],
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@cleartax/eslint-config": "^1.3.2",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"apollo-server": "^2.14.3",
"eslint": "^7.2.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-lodash": "^7.1.0",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"jest": "^26.0.1",
"prepublish-ok": "^0.5.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"peerDependencies": {
"apollo-server": ">= 2.14.3"
},
"dependencies": {
"apollo-server-plugin-base": "^0.9.0"
}
}