forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.23 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
{
"name": "@packages/launcher",
"version": "0.0.0-development",
"private": true,
"scripts": {
"build-prod": "tsc --project .",
"clean": "rimraf --glob \"lib/*.js\" && rimraf --glob \"lib/**/*.js\" || true",
"clean-deps": "rimraf node_modules",
"clean-js": "yarn clean",
"size": "t=\"cypress-v0.0.0.tgz\"; yarn pack --filename \"${t}\"; wc -c \"cli/${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"test": "yarn test-unit",
"test-unit": "mocha --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, ."
},
"dependencies": {
"bluebird": "3.5.3",
"debug": "^4.3.2",
"execa": "4.0.0",
"fs-extra": "9.1.0",
"lodash": "^4.17.21",
"plist": "3.0.5",
"semver": "7.3.5",
"which": "2.0.2",
"win-version-info": "5.0.1"
},
"devDependencies": {
"@packages/ts": "0.0.0-development",
"@packages/types": "0.0.0-development",
"chai": "3.5.0",
"chai-as-promised": "7.1.1",
"mocha": "3.5.3",
"mock-fs": "5.1.2",
"rimraf": "3.0.2",
"sinon": "^10.0.0",
"sinon-chai": "3.4.0",
"typescript": "^4.7.4"
},
"files": [
"index.js",
"lib"
],
"types": "index.ts"
}