This repository was archived by the owner on Jan 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
{
"name": "graphql-factory-acl",
"version": "0.1.4",
"description": "ACL Middleware for GraphQL Factory",
"main": "index.js",
"scripts": {
"lint": "eslint src",
"build": "rollup -c build/rollup.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphql-factory/graphql-factory-acl.git"
},
"keywords": [
"graphql",
"middleware",
"acl",
"resolve",
"auth",
"authn",
"authenticate",
"authentication"
],
"author": "Branden Horiuchi <bhoriuchi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql-factory/graphql-factory-acl/issues"
},
"homepage": "https://github.com/graphql-factory/graphql-factory-acl#readme",
"dependencies": {
"jsonwebtoken": "^8.0.1",
"lodash": "^4.17.4"
},
"peerDependencies": {
"acl": ">=0.4.11",
"graphql-factory": ">=2.1.0"
},
"devDependencies": {
"acl": "^0.4.11",
"acl-backend-rethinkdb": "^1.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"babelrc-rollup": "^3.0.0",
"chai": "^4.1.2",
"eslint": "^4.8.0",
"eslint-plugin-babel": "^4.1.2",
"express": "^4.16.1",
"express-graphql": "^0.6.11",
"graphql": "^0.11.6",
"graphql-factory": "^2.1.0",
"mocha": "^3.5.3",
"rethinkdbdash": "^2.3.31",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2"
}
}