-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.71 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
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "graphql-perf",
"version": "0.0.1",
"description": "Gather performance information from GraphQL resolve methods and prepare JSON in Trace Event Format for Chrome Devtools Timeline",
"files": [
"es",
"lib"
],
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"repository": {
"type": "git",
"url": "https://github.com/graphql-compose/graphql-perf.git"
},
"keywords": [
"graphql",
"performance",
"tracer",
"devtools",
"perf"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql-compose/graphql-perf/issues"
},
"homepage": "https://github.com/graphql-compose/graphql-perf",
"peerDependencies": {
"graphql": ">=0.8.0"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-core": "6.17.0",
"babel-eslint": "7.0.0",
"babel-jest": "^18.0.0",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-class-properties": "6.16.0",
"babel-plugin-transform-flow-strip-types": "6.14.0",
"babel-plugin-transform-object-rest-spread": "6.16.0",
"babel-plugin-transform-regenerator": "6.16.1",
"babel-plugin-transform-runtime": "6.15.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "6.16.0",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-spies": "0.7.1",
"cz-conventional-changelog": "^1.2.0",
"eslint": "3.7.1",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-flowtype": "2.19.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-react": "6.3.0",
"flow-bin": "0.33.0",
"jest": "^18.1.0",
"mocha": "3.1.0",
"nyc": "8.3.0",
"rimraf": "2.5.4",
"sane": "1.4.1",
"semantic-release": "^4.3.5"
},
"dependencies": {
"babel-runtime": "6.11.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"**/__mocks__/**",
"**/__tests__/**",
"resources",
"node_modules"
],
"reporter": [
"lcov",
"text"
]
},
"scripts": {
"build": "npm run build-cjs && npm run build-flow && npm run build-es",
"build-cjs": "rimraf lib && babel src --ignore __tests__,__mocks__ -d lib",
"build-es": "rimraf es && BABEL_ENV=es babel src --ignore __tests__,__mocks__ -d es",
"build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done",
"coverage": "nyc npm run test",
"lint": "eslint src test *.js",
"test": "jest",
"test-watch": "jest --watch",
"watch": "jest --watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
}
}