-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.1 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
{
"name": "code-coverage-subfolder-example",
"version": "1.0.0",
"description": "Example collecting web app code coverage from Cypress end-to-end tests where app is in subfolder",
"main": "index.js",
"scripts": {
"test": "cypress run",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"precc:instrument": "rm -rf instrumented",
"cc:instrument": "cp -r app instrumented && nyc instrument --compact false app instrumented",
"cc:report": "nyc report --check-coverage --lines 75"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/code-coverage-subfolder-example.git"
},
"keywords": [
"cypress-example",
"code-coverage"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bahmutov/code-coverage-subfolder-example/issues"
},
"homepage": "https://github.com/bahmutov/code-coverage-subfolder-example#readme",
"devDependencies": {
"@cypress/code-coverage": "1.10.4",
"cypress": "3.8.1",
"istanbul-lib-coverage": "3.0.0",
"nyc": "15.0.0"
}
}