-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.7 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
{
"name": "@runnable/octobear",
"version": "6.0.1",
"description": "",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run coverage",
"coverage": "NODE_PATH=./lib NODE_ENV=test istanbul cover _mocha -- --recursive test/unit test/functional/ && npm run coverage-check",
"coverage-unit": " NODE_PATH=./lib NODE_ENV=test istanbul cover _mocha --dir coverage-unit -- --recursive test/unit",
"coverage-functional": "NODE_PATH=./lib NODE_ENV=test istanbul cover _mocha --dir coverage-unit -- --recursive test/functional",
"coverage-check": "istanbul check-coverage --statement 100 --functions 100 --branches 100 --lines 100 && echo 'Coverage check successful!'",
"lint": "standard --verbose",
"test-unit": "NODE_PATH=./lib NODE_ENV=test mocha --recursive test/unit/",
"test-functional": "NODE_PATH=./lib NODE_ENV=test mocha --recursive test/functional/",
"test-integration": "NODE_PATH=./lib NODE_ENV=test mocha-parallel-tests test/integration/**/*.js --timeout 30000 --max-parallel 10"
},
"standard": {
"globals": [
"describe",
"xdescribe",
"it",
"xit",
"before",
"after",
"beforeEach",
"afterEach"
]
},
"author": "",
"devDependencies": {
"@runnable/api-client": "^9.2.5",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"loadenv": "^2.2.0",
"mocha": "^3.1.2",
"mocha-parallel-tests": "^1.2.3",
"sinon": "^1.17.6",
"standard": "^8.5.0",
"uuid": "^3.0.0"
},
"dependencies": {
"@runnable/hostname": "^3.0.0",
"bluebird": "^3.4.6",
"dotenv": "^4.0.0",
"joi": "^9.2.0",
"js-yaml": "^3.7.0",
"lodash.uniq": "^4.5.0"
}
}