-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.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
{
"name": "e2e-helper",
"version": "0.9.4",
"description": "end-to-end test helper, with facilitators for mocha",
"main": "lib",
"repository": {
"type": "git",
"url": "https://github.com/osher/e2e-helper"
},
"keywords": [
"test for a CLI service",
"test automation",
"mocha",
"end-to-end",
"end to end",
"e2e",
"ete"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "^4.15.0",
"istanbul": "*",
"mocha": "^7.2.0",
"mocha-ui-exports": "^1.1.0",
"should": "^9.0.0"
},
"scripts": {
"test": "mocha",
"cover": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"postcover": "npm run cover-enforce",
"cover-enforce": "node node_modules/istanbul/lib/cli.js check-coverage --function 90 --lines 90 --branches 90 --statements 90",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot && cat coverage/lcov.info | coveralls --verbose"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}