forked from jan-molak/serenity-cli-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.38 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
86
87
88
89
90
91
{
"name": "serenity-cli",
"version": "0.0.0-semantic",
"description": "Generates HTML reports from Serenity BDD-compatible JSON files",
"scripts": {
"init": "npm run typings -- install",
"commit": "git-cz",
"clean": "gulp clean",
"package": "gulp package",
"test": "gulp test",
"prepublish": "npm run init && npm run clean && npm run package",
"typings": "./node_modules/.bin/typings",
"report-coverage": "cat ./staging/reports/coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"tdd",
"bdd",
"test",
"testing",
"serenity",
"reporting",
"documentation"
],
"repository": {
"type": "git",
"url": "https://github.com/jan-molak/serenity-cli-node.git"
},
"bugs": {
"url": "https://github.com/jan-molak/serenity-cli-node/issues"
},
"bin": {
"serenity": "bin/serenity"
},
"main": "lib/cli.js",
"typings": "lib/cli.d.ts",
"author": "Jan Molak <[email protected]>",
"homepage": "https://github.com/jan-molak/serenity-cli-node",
"license": "Apache-2.0",
"dependencies": {
"java-home": "1.0.4",
"mkdirp": "0.5.1",
"mvn-artifact-filename": "1.0.5",
"mvn-artifact-name-parser": "1.0.4",
"mvn-artifact-url": "1.0.5",
"request": "2.81.0",
"rimraf": "2.5.4",
"split": "1.0.0",
"which": "1.2.12",
"winston": "2.2.0",
"yargs": "4.8.1"
},
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "5.3.0",
"commitizen": "2.8.5",
"coveralls": "2.11.12",
"cz-conventional-changelog": "1.1.7",
"gulp": "3.9.1",
"gulp-clean": "0.3.2",
"gulp-concat": "2.6.0",
"gulp-istanbul": "1.0.0",
"gulp-mocha": "3.0.1",
"gulp-sourcemaps": "1.6.0",
"gulp-tslint": "6.0.2",
"gulp-typescript": "2.13.6",
"merge2": "1.0.2",
"mocha": "3.0.2",
"mock-fs": "4.4.1",
"nock": "8.0.0",
"remap-istanbul": "0.6.4",
"run-sequence": "1.2.2",
"semantic-release": "^4.3.5",
"sinon": "1.17.5",
"sinon-chai": "2.8.0",
"ts-helper": "0.0.1",
"ts-node": "1.2.2",
"tslint": "3.14.0",
"typescript": "1.8.10",
"typings": "1.3.2"
},
"engines": {
"node": ">= 6.9.x",
"npm": ">= 3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}