-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
106 lines (106 loc) · 2.66 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "cy2",
"version": "4.0.9",
"author": "Andrew Goldis",
"main": "./dist",
"typings": "./dist",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/sorry-cypress/cy2.git"
},
"scripts": {
"postinstall": "patch-package",
"build": "run-p tsc esbuild",
"dev": "run-p watch:*",
"test": "jest",
"tsc": "tsc",
"esbuild": "node ./build.js",
"watch:tsc": "run-s \"tsc --watch --preserveWatchOutput\"",
"watch:esbuild": "esbuild ./src/*.ts --bundle --platform=node --target=node14 --packages=external --sourcemap=inline --outdir=dist --watch",
"build-tunnel": "esbuild ./src/tunnel-proxy.ts --bundle --platform=node --target=node14 --packages=external --sourcemap=inline --outdir=dist",
"release": "release-it",
"release-ci": "release-it --ci --npm.skipChecks --no-git --no-github --no-increment --npm.publish",
"clean": "rimraf dist"
},
"files": [
"bin/*",
"dist/index.js*",
"!dist/__tests__",
"!dist/*.d.ts",
"!dist/**/*.d.ts",
"dist/index.d.ts",
"dist/cypress-wrapper.d.ts",
"dist/bin-path.d.ts"
],
"bin": {
"cy2": "bin/cy2"
},
"engines": {
"node": ">=14.17.0"
},
"keywords": [
"cypress",
"sorry-cypress",
"cypress dashboard",
"cypress ci",
"cypress parallel",
"currents"
],
"dependencies": {
"chalk": "^4.1.2",
"eventemitter3": "^4.0.0",
"follow-redirects": "^1.0.0",
"fp-ts": "^2.13.1",
"http-terminator": "^3.2.0",
"https-proxy-agent": "^5.0.1",
"lodash": "^4.17.21",
"micromatch": "^4.0.5",
"patch-package": "^6.5.1",
"requires-port": "^1.0.0",
"source-map-support": "^0.5.21",
"tmp": "^0.2.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@types/http-proxy": "^1.17.9",
"@types/jest": "^27.0.1",
"@types/lodash": "^4.14.191",
"@types/micromatch": "^4.0.2",
"@types/node": "^18.11.17",
"cypress": ">=6.7.0",
"devcert": "^1.2.2",
"esbuild": "^0.16.13",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"release-it": "^15.6.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"release-it": {
"npm": {
"publish": false
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"header": "# Changelog",
"ignoreVersion": true,
"infile": "CHANGELOG.md"
}
},
"git": {
"commitMessage": "chore: release v${version}"
},
"hooks": {
"before:init": "run-s clean build"
}
},
"prettier": {
"singleQuote": true
}
}