forked from cypress-io/code-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.17 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
{
"name": "@cypress/code-coverage",
"version": "0.0.0-development",
"description": "Saves the code coverage collected during Cypress tests",
"main": "index.js",
"scripts": {
"test": "cypress run",
"start": "parcel serve cypress/index.html",
"cy:open": "cypress open",
"dev": "start-test 1234 cy:open",
"semantic-release": "semantic-release",
"test:ci": "start-test 1234",
"report:coverage": "nyc report --reporter=html",
"dev:no:coverage": "start-test 1234 'cypress open --env coverage=false'",
"format": "prettier --write '*.js'",
"format:check": "prettier --check '*.js'",
"start:test:backend": "nyc --silent node test-backend",
"cy:backend": "cypress open --config-file cypress-backend.json",
"dev:backend": "start-test start:test:backend 3003 cy:backend",
"check:markdown": "find *.md -exec npx markdown-link-check {} \\;",
"effective:config": "circleci config process .circleci/config.yml | sed /^#/d"
},
"peerDependencies": {
"cypress": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/code-coverage.git"
},
"keywords": [
"cypress",
"istanbul",
"cypress-plugin",
"code",
"coverage"
],
"author": "Gleb Bahmutov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cypress-io/code-coverage/issues"
},
"homepage": "https://github.com/cypress-io/code-coverage#readme",
"files": [
"*.js",
"middleware"
],
"publishConfig": {
"access": "public"
},
"private": false,
"dependencies": {
"@cypress/browserify-preprocessor": "2.2.1",
"debug": "4.1.1",
"execa": "4.0.0",
"nyc": "15.0.1",
"istanbul-lib-coverage": "3.0.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@istanbuljs/nyc-config-typescript": "1.0.1",
"babel-plugin-istanbul": "6.0.0",
"cypress": "4.3.0",
"express": "4.17.1",
"lodash": "4.17.15",
"markdown-link-check": "3.8.0",
"parcel-bundler": "1.12.4",
"prettier": "1.19.1",
"semantic-release": "17.0.4",
"serve": "11.3.0",
"source-map-support": "0.5.16",
"start-server-and-test": "1.10.11",
"typescript": "3.8.3"
}
}