This repository was archived by the owner on Jul 24, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.44 KB
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
{
"name": "graphql-gate",
"version": "2.0.1",
"description": "graphql wrapper for making validation, generation and permissions easier",
"main": "lib/index.js",
"scripts": {
"build": "./node_modules/.bin/babel --presets latest -d lib/ src/",
"test": "NODE_PATH=$NODE_PATH:$PWD nyc ./node_modules/.bin/mocha --compilers js:babel-core/register --reporter spec",
"test:debug": "NODE_PATH=$NODE_PATH:$PWD nyc ./node_modules/.bin/mocha --inspect --debug-brk --compilers js:babel-core/register --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willhackett/graphql-gate.git"
},
"keywords": [
"graphql",
"validation",
"permissions",
"db",
"mongo",
"dynamodb",
"lambda"
],
"author": "Will Hackett",
"license": "MIT",
"bugs": {
"url": "https://github.com/willhackett/graphql-gate/issues"
},
"homepage": "https://github.com/willhackett/graphql-gate#readme",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-root-slash-import": "^1.1.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"mocha": "^3.2.0",
"mocha-sinon": "^1.1.6",
"nyc": "^10.1.2",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"debug": "^3.1.0",
"graphql": "^0.12.3"
}
}