forked from cypress-io/cypress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.04 KB
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/electron",
"version": "0.0.0",
"private": true,
"main": "index.js",
"scripts": {
"prebuild": "npm run check-deps-pre",
"build": "node ./bin/cypress-electron --install",
"build-prod": "npm run build",
"check-deps": "node ../../scripts/check-deps.js --verbose",
"check-deps-pre": "npm run check-deps -- --prescript",
"clean-deps": "rm -rf node_modules",
"postinstall": "echo '@packages/electron needs: npm run build'",
"prestart": "npm run check-deps-pre",
"start": "./bin/cypress-electron",
"pretest": "npm run check-deps-pre",
"test": "mocha --compilers coffee:@packages/coffee/register"
},
"dependencies": {
"@cypress/icons": "0.7.0",
"bluebird": "3.5.3",
"debug": "4.1.1",
"electron-packager": "14.1.1",
"fs-extra": "8.1.0",
"lodash": "4.17.15",
"minimist": "1.2.0"
},
"devDependencies": {
"electron": "7.1.4",
"mocha": "3.5.3"
},
"files": [
"dist",
"lib"
],
"bin": {
"cypress-electron": "./bin/cypress-electron"
}
}