-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
52 lines (52 loc) · 1.33 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
{
"name": "graphql-errors",
"version": "2.1.0",
"description": "Better error handling for GraphQL",
"main": "./dist/",
"options": {
"mocha": "--require scripts/mocha_runner lib/**/__tests__/**/*.js"
},
"scripts": {
"prepublish": ". ./scripts/prepublish.sh",
"lint": "eslint ./lib",
"lintfix": "eslint ./lib --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kadirahq/graphql-errors.git"
},
"keywords": [
"graphql"
],
"author": "Kadira Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/kadirahq/graphql-errors/issues"
},
"homepage": "https://github.com/kadirahq/graphql-errors#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-polyfill": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^3.5.0",
"eslint": "^2.9.0",
"eslint-plugin-babel": "^3.2.0",
"graphql": ">0.4.0",
"logtrap": "0.0.1",
"mocha": "^2.4.5",
"nodemon": "^1.9.2"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"uuid": "^2.0.2"
},
"peerDependencies": {
"graphql": ">0.4.0"
}
}