-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "graphql-sword",
"version": "1.1.0",
"description": "Add a permission layer to your GraphQL Server with graphql-shield",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && tsc -d",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"precommit": "npm run lint && npm run build",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waitandseeagency/graphql-sword.git"
},
"keywords": [
"graphql",
"middleware",
"permissions",
"layer",
"shield",
"rule"
],
"author": "Johann Pinson",
"license": "MIT",
"bugs": {
"url": "https://github.com/waitandseeagency/graphql-sword/issues"
},
"homepage": "https://github.com/waitandseeagency/graphql-sword#readme",
"peerDependencies": {
"graphql": "^0.13.0",
"graphql-middleware": "^1.6.6",
"graphql-shield": "^2.2.7"
},
"devDependencies": {
"@types/graphql": "^0.13.4",
"@types/node": "^10.9.4",
"apollo-server-errors": "^2.0.2",
"cz-conventional-changelog": "^2.1.0",
"graphql": "^0.13.2",
"graphql-middleware": "^1.6.6",
"graphql-shield": "^2.2.7",
"husky": "^0.14.3",
"rimraf": "^2.6.2",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"pluralize": "^7.0.0"
}
}