-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
124 lines (124 loc) · 3.08 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "serenity-cli",
"version": "0.0.0-semantic",
"description": "Generates HTML reports from Serenity BDD-compatible JSON files",
"scripts": {
"commit": "git-cz",
"clean": "rimraf lib target",
"lint": "tslint --project tsconfig.json --config tslint.json --format stylish",
"test": "cross-env NODE_ENV=test nyc --report-dir target/coverage mocha --opts ../../mocha.opts 'spec/**/*.spec.*'",
"package": "tsc --project tsconfig.json",
"verify": "npm run clean && npm run lint && npm test && npm run package",
"report-coverage": "cat ./target/coverage/lcov.info | node ./node_modules/coveralls/bin/coveralls.js",
"semantic-release": "semantic-release"
},
"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": {
"ci-info": "1.1.3",
"java-home": "1.0.7",
"mkdirp": "0.5.1",
"mvn-artifact-filename": "3.0.2",
"mvn-artifact-name-parser": "3.0.1",
"mvn-artifact-url": "3.0.2",
"progress": "2.0.0",
"request": "2.87.0",
"rimraf": "2.6.2",
"split": "1.0.1",
"which": "1.3.1",
"winston": "2.4.0",
"yargs": "12.0.2"
},
"devDependencies": {
"@types/chai": "4.1.4",
"@types/chai-as-promised": "7.1.0",
"@types/mkdirp": "0.5.2",
"@types/mocha": "5.2.3",
"@types/mock-fs": "3.6.30",
"@types/nock": "9.1.3",
"@types/node": "10.5.0",
"@types/progress": "2.0.1",
"@types/request": "2.47.1",
"@types/rimraf": "2.0.2",
"@types/sinon": "5.0.1",
"@types/sinon-chai": "3.2.0",
"@types/split": "0.3.28",
"@types/which": "1.3.1",
"@types/winston": "2.3.9",
"@types/yargs": "11.0.0",
"chai": "4.1.2",
"chai-as-promised": "7.1.1",
"commitizen": "2.10.1",
"coveralls": "3.0.1",
"cross-env": "5.2.0",
"cz-conventional-changelog": "2.1.0",
"mocha": "5.2.0",
"mock-fs": "4.5.0",
"nock": "9.3.3",
"nyc": "12.0.2",
"semantic-release": "15.6.0",
"sinon": "6.0.1",
"sinon-chai": "3.2.0",
"ts-node": "7.0.0",
"tslint": "5.10.0",
"tslint-microsoft-contrib": "5.0.3",
"typescript": "2.9.2"
},
"engines": {
"node": ">= 6.9.x",
"npm": ">= 3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"*.js",
"lib",
"resources",
"spec",
"node_modules"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"html",
"text-summary"
],
"cache": true,
"all": true
}
}