forked from drazisil/junit-merge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.04 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
{
"name": "cucumber-json-merge",
"version": "0.0.8",
"description": "NodeJS CLI for merging Cucumber JSON test results",
"main": "./lib/index.js",
"bin": "./bin/cucumber-json-merge",
"directories": {
"test": "test"
},
"dependencies": {
"commander": "^2.20.3",
"fs-readdir-recursive": "^1.1.0",
"mkdirp": "^0.5.6"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"istanbul": "^0.4.5",
"mocha": "^6.2.3",
"mocha-junit-reporter": "^1.23.3",
"mocha-lcov-reporter": "^1.3.0",
"mocha-multi-reporters": "^1.5.1",
"nyc": "^14.1.1",
"pkg": "4.4.0",
"prettier": "^1.19.1"
},
"scripts": {
"mocha": "./node_modules/.bin/_mocha -- test/**/*.spec.js",
"cov": "nyc --all --reporter=html --reporter=text --reporter=lcov mocha test/**/*.spec.js --reporter-options configFile=config.json",
"test": "npm run lint && npm run mocha && npm run cov",
"lint": "eslint lib test",
"pkg": "pkg . --out-path=pkg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitcoder/cucumber-json-merge.git"
},
"keywords": [
"cucumber",
"reports"
],
"author": "Sergio Freire <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bitcoder/cucumber-json-merge/issues"
},
"homepage": "https://github.com/bitcoder/cucumber-json-merge#readme",
"standard": {
"globals": [
"describe",
"it"
]
},
"mocha": {
"reporter": "mocha-multi-reporters",
"reporterOptions": {
"configFile": "config.json"
}
},
"nyc": {
"exclude": [
"coverage/*",
"test/*"
]
},
"eslintConfig": {
"extends": "prettier",
"parserOptions": {
"ecmaVersion": 6
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
},
"prettier": {
"trailingComma": "es5"
}
}