-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 2.06 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
{
"name": "node-scientist",
"version": "3.0.0",
"description": "Helper to do Science!",
"main": "dist/scientist.js",
"scripts": {
"build": "babel --out-dir dist src",
"coverage": "nyc --reporter=text --reporter=html $npm_package_options_nyc_coverage npm run unit",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"format": "standard --format",
"integration": "NODE_ENV=test mocha $npm_package_options_mocha test/integration",
"lint": "npm run lint:format && npm run lint:type",
"lint:format": "standard",
"lint:type": "flow --timeout 30",
"lint:type:start-server": "flow start",
"prepublish": "not-in-install && npm run build || in-install",
"test": "npm run lint && npm run unit && npm run integration",
"unit": "NODE_ENV=test mocha $npm_package_options_mocha test/unit"
},
"options": {
"mocha": "--recursive --reporter spec --bail --compilers js:babel-register",
"nyc-coverage": "--check-coverage --lines 100 --functions 100 --branches 100 --statements 100"
},
"author": "Bryan Kendall <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Runnable/scientist"
},
"license": "MIT",
"standard": {
"parser": "babel-eslint",
"globals": [
"describe",
"before",
"beforeEach",
"after",
"afterEach",
"it"
]
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.2",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-flow-strip-types": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"coveralls": "^2.11.8",
"flow-bin": "^0.28.0",
"mocha": "^2.5.1",
"nyc": "^7.0.0",
"sinon": "^1.17.2",
"standard": "^7.0.1"
},
"dependencies": {
"101": "^1.6.0",
"bluebird": "^3.3.3",
"debug": "^2.2.0",
"es6-error": "^3.0.0",
"immutable": "^3.7.6",
"in-publish": "^2.0.0",
"knuth-shuffle": "^1.0.1"
}
}