-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.24 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
{
"name": "bipbip",
"description": "Benchmark runner for performance regression test suites",
"version": "0.4.2",
"author": "Samy Pessé <[email protected]>",
"repository": "https://github.com/GitbookIO/bipbip",
"license": "MIT",
"files": [
"lib"
],
"dependencies": {
"cli-color": "^1.2.0",
"cli-spinner": "^0.2.8",
"cli-table": "^0.3.1",
"commander": "^2.15.1",
"fast-stats": "^0.0.3",
"globby": "^8.0.1",
"pretty-ms": "^3.1.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"eslint": "^4.19.1",
"eslint-config-gitbook": "^3.0.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^5.1.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.8.2",
"flow-bin": "^0.72.0",
"prettier": "^1.12.1"
},
"scripts": {
"lint": "eslint ./src",
"flow": "flow ./src",
"test": "babel-node ./src/bin.js",
"prepare": "babel --ignore '**/__tests__/*.js' --out-dir ./lib ./src"
},
"bin": {
"bipbip": "./lib/bin.js"
}
}