-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·53 lines (53 loc) · 1.74 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
{
"name": "graphql-custom-directive",
"version": "0.2.0",
"description": "A custom directive for GraphQL which hooks the query or schema execution",
"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-directive.git"
},
"keywords": [
"graphql",
"directive"
],
"author": "Liron Goldenberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/lirown/graphql-custom-directive/issues"
},
"homepage": "https://github.com/lirown/graphql-custom-directive#readme",
"peerDependencies": {
"graphql": "*"
},
"dependencies": {},
"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.7.0",
"graphql": "*",
"mocha": "^3.1.2",
"nyc": "^8.3.1",
"prettier": "^1.13.5"
}
}