This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
84 lines (84 loc) · 1.97 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
{
"name": "junit-merge",
"version": "2.0.0",
"description": "NodeJS CLI for merging JUnit XML test results",
"main": "index.js",
"bin": "./bin/junit-merge",
"directories": {
"test": "test"
},
"dependencies": {
"commander": "^4.0.0",
"fs-readdir-recursive": "^1.1.0",
"mkdirp": "^0.5.1",
"xmldoc": "^1.1.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^6.2.1",
"mocha-junit-reporter": "^1.23.1",
"mocha-lcov-reporter": "^1.3.0",
"mocha-multi-reporters": "^1.1.7",
"nyc": "^14.1.0",
"pkg": "4.4.2",
"prettier": "^1.18.2"
},
"scripts": {
"mocha": "./node_modules/.bin/_mocha -- test/**/*.spec.js",
"cov": "nyc --all --reporter=cobertura --reporter=html --reporter=text 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/drazisil/junit-merge.git"
},
"keywords": [
"junit"
],
"author": "Joseph W Becher <jwbecher@drazisil.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/drazisil/junit-merge/issues"
},
"homepage": "https://github.com/drazisil/junit-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"
}
}