-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
71 lines (71 loc) · 1.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
{
"name": "netlify-plugin-cypress",
"private": false,
"version": "0.0.0-development",
"description": "Cypress Netlify build plugin",
"main": "src",
"scripts": {
"test": "cypress run",
"test:unit": "jest",
"semantic-release": "semantic-release",
"start": "serve public"
},
"keywords": [
"netlify",
"netlify-plugin"
],
"author": "Cypress-io",
"files": [
"manifest.yml",
"src",
"!src/**/*.test.js"
],
"license": "ISC",
"dependencies": {
"common-tags": "1.8.0",
"debug": "4.1.1",
"got": "11.8.6",
"local-web-server": "^4.2.1",
"puppeteer": "18.1.0",
"ramda": "0.28.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/netlify-plugin-cypress.git"
},
"bugs": {
"url": "https://github.com/cypress-io/netlify-plugin-cypress/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"jest": "^24.9.0",
"cypress": "13.17.0",
"netlify-cli": "17.38.1",
"prettier": "2.2.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-router-dom": "5.2.0",
"react-scripts": "5.0.1",
"semantic-release": "^20.0.2",
"serve": "14.2.0"
},
"release": {
"branches": [
{
"name": "master"
},
{
"name": "prepare-v2",
"prerelease": true
}
]
},
"jest": {
"rootDir": "./src"
}
}