forked from cypress-io/code-coverage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.35 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
{
"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'",
"check:markdown": "find *.md -exec npx markdown-link-check {} \\;",
"effective:config": "circleci config process .circleci/config.yml | sed /^#/d",
"types": "tsc --noEmit --allowJs *.js cypress/integration/*.js"
},
"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": "3.0.2",
"dayjs": "1.10.7",
"debug": "4.3.3",
"execa": "4.1.0",
"globby": "11.0.4",
"istanbul-lib-coverage": "3.0.0",
"js-yaml": "3.14.1",
"nyc": "15.1.0",
"chalk": "4.1.2"
},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-typescript": "7.16.0",
"@cypress/webpack-preprocessor": "5.10.0",
"babel-loader": "8.2.3",
"babel-plugin-istanbul": "6.1.1",
"browserify-istanbul": "3.0.1",
"check-code-coverage": "1.10.0",
"console-log-div": "0.6.3",
"cypress": "9.1.1",
"express": "4.17.1",
"lodash": "4.17.21",
"markdown-link-check": "3.9.0",
"parcel-bundler": "1.12.5",
"prettier": "2.5.0",
"semantic-release": "17.4.7",
"serve": "11.3.2",
"start-server-and-test": "1.14.0",
"ts-loader": "8.3.0",
"typescript": "4.5.2",
"webpack": "4.46.0",
"webpack-cli": "3.3.12"
}
}