forked from lirown/graphql-custom-directives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.83 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
{
"name": "graphql-custom-directives",
"version": "0.1.9",
"description": "Create custom graphql directives with the ability to hook the execution of graphql",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"build-watch": "babel src --watch --out-dir dist",
"clear": "rm -rf ./dist ./coverage ./.nyc_output",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"nyc": "nyc npm test && nyc report --reporter=lcov",
"retest": "npm run clear && npm test",
"pretest": "npm run build",
"start": "npm test",
"test": "mocha",
"test-watch": "mocha --watch",
"update-D": "npm install --save-dev babel-cli@latest babel-preset-es2015@latest babel-preset-stage-0@latest babel-register@latest chai@latest chai-as-promised@latest coveralls@latest graphql@latest mocha@latest nyc@latest",
"watch": "npm run build-watch & npm run test-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lirown/graphql-custom-directives.git"
},
"keywords": [
"graphql",
"directives",
"filters"
],
"author": "Liron Goldenberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/lirown/graphql-custom-directives/issues"
},
"homepage": "https://github.com/lirown/graphql-custom-directives#readme",
"dependencies": {
"moment": "^2.15.1",
"numeral": "^2.0.6",
"lodash": "^4.16.4"
},
"peerDependencies": {
"graphql": "*"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.14",
"eslint": "^3.8.0",
"eslint-config-google": "^0.6.0",
"graphql": "^0.10.1",
"mocha": "^3.1.2",
"nyc": "^8.3.1"
}
}