-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
85 lines (85 loc) · 2.42 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
{
"name": "@cypress/code-coverage",
"version": "0.0.0-development",
"description": "Saves the code coverage collected during Cypress tests",
"main": "index.js",
"scripts": {
"start": "parcel serve cypress/index.html",
"coverage:verify": "npx nyc report --check-coverage true --lines 80",
"cy:open": "cypress open",
"dev": "start-test 1234 cy:open",
"semantic-release": "semantic-release",
"test": "start-test 1234 'npx cypress run'",
"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'",
"check:markdown": "find *.md -exec npx markdown-link-check {} \\;",
"effective:config": "circleci config process .circleci/config.yml | sed /^#/d"
},
"peerDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.3 || ^9",
"cypress": "*",
"webpack": "^4 || ^5"
},
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/code-coverage.git"
},
"keywords": [
"cypress",
"istanbul",
"cypress-plugin",
"code",
"coverage"
],
"author": "Cypress <[email protected]> (http://www.cypress.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cypress-io/code-coverage/issues"
},
"homepage": "https://github.com/cypress-io/code-coverage#readme",
"files": [
"*.d.ts",
"*.js",
"middleware"
],
"publishConfig": {
"access": "public"
},
"private": false,
"dependencies": {
"@cypress/webpack-preprocessor": "^6.0.0",
"chalk": "4.1.2",
"dayjs": "1.11.13",
"debug": "4.3.7",
"execa": "4.1.0",
"globby": "11.1.0",
"istanbul-lib-coverage": "^3.0.0",
"js-yaml": "4.1.0",
"nyc": "15.1.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.11",
"@cypress/code-coverage": "file:.",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "6.1.1",
"check-code-coverage": "1.10.5",
"console-log-div": "0.6.3",
"cypress": "^13.1.0",
"express": "^4.18.2",
"lodash": "4.17.21",
"markdown-link-check": "3.13.6",
"parcel-bundler": "1.12.5",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"semantic-release": "17.4.7",
"serve": "14.2.4",
"start-server-and-test": "2.0.8",
"webpack": "^5.68.0",
"webpack-cli": "^5.1.4"
}
}