-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
{
"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"
},
"peerDependencies": {
"cypress": "*",
"nyc": "*",
"istanbul-lib-coverage": "*"
},
"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.1.1",
"debug": "4.1.1"
},
"devDependencies": {
"@babel/core": "7.5.5",
"babel-plugin-istanbul": "5.2.0",
"cypress": "3.4.0",
"istanbul-lib-coverage": "2.0.5",
"lodash": "4.17.15",
"nyc": "14.1.1",
"parcel-bundler": "1.12.3",
"start-server-and-test": "1.9.1",
"semantic-release": "15.13.18"
}
}