-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
59 lines (59 loc) · 1.85 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-apollo-errors",
"version": "2.0.3",
"description": "A small library to handle graphql and apollo errors in a better way",
"main": "dist/index.js",
"scripts": {
"compile": "babel -d dist/ lib/",
"watch": "babel --watch -d dist/ lib/",
"prepublish": "npm run compile",
"test": "mocha --compilers js:babel-core/register \"lib/**/*.spec.js\"",
"coverage": "istanbul cover _mocha -- --compilers js:babel-core/register \"lib/**/*.spec.js\" -R spec",
"coveralls": "istanbul cover _mocha --report lcovonly -- --compilers js:babel-core/register \"lib/**/*.spec.js\" -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/GiladShoham/graphql-apollo-errors"
},
"bugs": {
"url": "https://github.com/GiladShoham/graphql-apollo-errors/issues"
},
"keywords": [
"error",
"apollostack",
"graphql",
"error",
"api",
"http"
],
"author": "Gilad Shoham <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-core": "^6.10.4",
"babel-eslint": "^6.0.4",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.11.1",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-date-string": "^0.1.0",
"coveralls": "^2.11.11",
"eslint": "^3.15.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"regenerator-runtime": "^0.10.1",
"rewire": "^2.5.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"winston": "^2.2.0"
},
"dependencies": {
"lodash": "^4.17.4",
"minilog": "^3.1.0",
"seven-boom": "^1.0.3"
}
}