-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.49 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
{
"name": "cucumber-junit-formatter",
"version": "0.2.2",
"description": "Cucmber.js junit xml formatter",
"engines": {
"node": ">=8.0.0"
},
"repository": "https://github.com/mvtm-dn/cucumber-junit-formatter",
"bugs": {
"url": "https://github.com/mvtm-dn/cucumber-junit-formatter/issues"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "nyc mocha --require babel-core/register",
"posttest": "nyc report --reporter=text-summary",
"coverage": "nyc report --reporter=html",
"coverage:ci": "nyc report --reporter=text-lcov | coveralls",
"preversion": "test `git rev-parse --abbrev-ref HEAD` = master && npm test",
"postversion": "git push --follow-tags"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cucumber": "^6.0.5",
"eslint": "^5.11.1",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"should": "^13.2.3"
},
"keywords": [
"cucumber",
"junit",
"xml",
"test",
"testing",
"cucumber-js",
"ci/cd"
],
"author": "Vasyl Moskalov <vasyl@h2i.sg>",
"license": "MIT",
"main": "index.js",
"files": [
"util.js",
"before6/index.js",
"before6/scenarios.js",
"v6/index.js",
"v6/scenarios.js",
"README.md",
"LICENSE"
],
"dependencies": {
"xml": "^1.0.1"
},
"peerDependencies": {
"cucumber": ">=3.0.0"
}
}