-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.92 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.92 KB
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
{
"name": "feature-deployer",
"version": "1.1.1",
"main": "feature-deployer-bin.js",
"author": "Tech team <infra@scup.com>",
"license": "Commercial",
"private": true,
"bin": {
"feature-deployer": "feature-deployer-bin.js",
"older-feature-deployer": "older-feature-deployer-bin.js"
},
"scripts": {
"test-unitary": "NODE_ENV=test LOG_LEVEL=error TZ=utc mocha --colors --reporter min \"Domain/**/*.test.js\" \"Infra/**/*.test.js\"",
"integration": "NODE_ENV=test LOG_LEVEL=error TZ=utc cucumber-js",
"integration:watch": "yarn integration && watch -p 'commands/*.js' -c 'yarn integration'",
"test": "yarn test-unitary && yarn integration",
"cover-unitary": "nyc yarn test-unitary",
"cover": "nyc yarn test",
"lint": "standard -v \"commands/**/*.js\" \"features/**/*.js\" \"Domain/**/*.js\" \"Infra/**/*.js\"",
"lint:fix": "yarn lint --fix",
"validate": "yarn lint && yarn cover"
},
"engines": {
"node": ">=9.4.0"
},
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.13.0",
"simple-git": "^1.89.0",
"winston": "^3.0.0-rc1"
},
"devDependencies": {
"chai": "^4.1.2",
"cucumber": "^4.0.0",
"faker": "^4.1.0",
"mocha": "^5.0.0",
"nyc": "^11.4.1",
"rosie": "^1.6.0",
"sinon": "^4.1.3",
"standard": "^10.0.3",
"watch-cli": "^0.2.3"
},
"standard": {
"globals": [
"describe",
"context",
"it",
"after",
"afterEach",
"before",
"beforeEach"
]
},
"nyc": {
"check-coverage": true,
"per-file": true,
"all": true,
"exclude": [
"feature-deployer-bin.js",
"older-feature-deployer-bin.js",
"**/*.help.js",
"Infra/commands/deploy-feature.js",
"node_modules",
"coverage"
],
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"lcov",
"text",
"text-summary"
]
}
}