-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
80 lines (80 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "graphql-resolve-batch",
"version": "1.0.3",
"description": "A GraphQL batching model which groups execution by GraphQL fields.",
"author": "Caleb Meredith <calebmeredith8@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/calebmer/graphql-resolve-batch#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/calebmer/graphql-resolve-batch.git"
},
"bugs": {
"url": "https://github.com/calebmer/graphql-resolve-batch/issues"
},
"keywords": [
"graphql",
"batch",
"resolve",
"field"
],
"main": "lib/batch.js",
"files": [
"package.json",
"README.md",
"LICENSE",
"lib/batch.js",
"src/batch.js"
],
"scripts": {
"preversion": "npm run ci",
"prepublish": "npm run build",
"format": "prettier 'src/**/*.js' 'examples/**/*.js' --write --print-width 80 --tab-width 2 --single-quote --trailing-comma all",
"lint": "eslint 'src/**/*.js'",
"test": "jest",
"test-watch": "jest --watch",
"ci": "npm run format && git diff --exit-code && npm run lint && npm test",
"build": "rm -rf lib && babel src --out-dir lib"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^19.0.0",
"babel-preset-env": "^1.1.10",
"babel-preset-es2015": "^6.22.0",
"eslint": "^3.16.1",
"graphql": "^0.9.1",
"graphql-tools": "^0.10.1",
"jest": "^19.0.2",
"prettier": "^0.19.0"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": 4
}
}
]
]
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"node": true,
"es6": true,
"jest": true
},
"extends": [
"eslint:recommended"
]
},
"jest": {
"roots": [
"<rootDir>/src/"
]
}
}