-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.76 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
{
"name": "graphql-directive-private",
"version": "4.0.3",
"description": "Fields and Objects marked with @private will not be removed from the schema. They will not appear in introspection and they will not be queryable.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && tsc",
"format": "./node_modules/.bin/prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
"lint": "./node_modules/.bin/tslint --fix 'src/**/*.{ts,tsx}'",
"test": "npm run build && boxtape tests/**/*.test.js",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"repository": "[email protected]:taylrun/graphql-directive-private.git",
"author": "Taylor Goolsby <[email protected]>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@graphql-tools/schema": "^10.0.0",
"@graphql-tools/utils": "^10.0.3"
},
"peerDependencies": {
"graphql": "^0.11 || ^16.7.1"
},
"devDependencies": {
"@types/fs-extra": "^5.1.0",
"@types/isomorphic-form-data": "^2.0.1",
"@types/lodash.get": "^4.4.6",
"@types/node": "^20.3.3",
"@types/tape": "^5.6.0",
"@types/ws": "^7.4.0",
"boxtape": "^0.0.13",
"graphql": "^16.7.1",
"husky": "^1.1.1",
"lint-staged": "^7.3.0",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.1.6"
},
"keywords": [
"graphql",
"sdl",
"graphql-schema-language",
"graphql-schema",
"schema",
"cut",
"private",
"api",
"expose",
"hide",
"remove"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}