forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "@packages/launcher",
"version": "0.0.0-development",
"private": true,
"main": "index.js",
"scripts": {
"build-prod": "tsc --project .",
"clean": "node scripts/clean.js || true",
"clean-deps": "rm -rf 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"
},
"dependencies": {
"bluebird": "3.5.3",
"debug": "4.3.2",
"execa": "4.0.0",
"fs-extra": "8.1.0",
"lodash": "4.17.21",
"plist": "3.0.1",
"ramda": "0.27.1"
},
"devDependencies": {
"@packages/ts": "0.0.0-development",
"chai": "3.5.0",
"chai-as-promised": "7.1.1",
"cross-env": "6.0.3",
"mocha": "3.5.3",
"shelljs": "0.8.3",
"sinon": "^10.0.0",
"sinon-chai": "3.4.0",
"typescript": "^4.2.3"
},
"files": [
"lib"
],
"types": "index.ts"
}