-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "apollo-errors",
"version": "1.9.0",
"description": "Machine-readable custom errors for Apollostack's GraphQL server",
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"build": "tsc",
"lint": "eslint src",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thebigredgeek/apollo-errors.git"
},
"keywords": [
"apollostack",
"graphql",
"apollo-server",
"apollo-client",
"error",
"api"
],
"author": "Andrew E. Rhyne <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thebigredgeek/apollo-errors/issues"
},
"homepage": "https://github.com/thebigredgeek/apollo-errors#readme",
"dependencies": {
"assert": "^2.0.0",
"extendable-error": "^0.1.5"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "7.2.3",
"babel-preset-es2015": "6.24.1",
"babel-register": "6.26.0",
"chai": "3.5.0",
"eslint": "3.19.0",
"eslint-plugin-babel": "3.3.0",
"mocha": "3.5.3",
"rimraf": "2.6.3",
"typescript": "2.9.2"
},
"typings": "dist/index.d.ts"
}