-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "graphql-rbac",
"version": "1.0.1",
"description": "GraphQL RBAC middleware",
"main": "lib/index.js",
"module": "./lib/index.js",
"jsnext:main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\" \"test/*\"",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc -p ./tsconfig.release.json --pretty",
"test": "mocha --timeout 100000 --compilers ts:ts-node/register --recursive \"test/**/*.spec.ts\"",
"coverage": "nyc npm run test",
"prepublishOnly": "npm run build"
},
"keywords": [
"rbac",
"graphql"
],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/graphql": "^14.0.3",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.9",
"chai": "^4.2.0",
"graphql": "^14.0.2",
"graphql-middleware": "^2.0.2",
"graphql-tools": "^4.0.3",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6"
},
"dependencies": {
"graphql-shield": "^4.1.0",
"lodash": "^4.17.11"
}
}