-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
59 lines (59 loc) · 1.6 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
{
"name": "graphql-directive",
"version": "0.2.1",
"main": "lib/index.js",
"repository": "git@github.com:smooth-code/graphql-directive.git",
"author": "Greg Bergé <greg@smooth-code.com>",
"keywords": [
"graphql",
"graphql-custom-directives",
"graphql-tools",
"directive",
"directives"
],
"license": "MIT",
"scripts": {
"build": "rm -rf lib/ && NODE_ENV=production babel src -d lib --ignore \"*.test.js\"",
"ci": "./scripts/ci.sh",
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint .",
"prepublishOnly": "yarn build",
"release": "yarn build && standard-version && conventional-github-releaser -p angular",
"test": "jest"
},
"jest": {
"collectCoverageFrom": [
"**/*.js",
"!.eslintrc.js",
"!**/lib/**",
"!**/examples/**",
"!**/node_modules/**"
]
},
"peerDependencies": {
"graphql": "^0.11.0 || ^0.12.0"
},
"dependencies": {
"graphql-tools": "^2.21.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^22.4.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"codecov": "^3.6.5",
"conventional-github-releaser": "^2.0.0",
"date-fns": "^1.29.0",
"eslint": "^4.18.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"graphql": "^0.13.1",
"jest": "^22.4.0",
"prettier": "^1.10.2",
"standard-version": "^4.3.0"
}
}