mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-05 06:40:56 -06:00
Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Zachary Williams <ZachJW34@gmail.com>
40 lines
968 B
JSON
40 lines
968 B
JSON
{
|
|
"name": "@packages/electron",
|
|
"version": "0.0.0-development",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "node ./bin/cypress-electron --install",
|
|
"build-prod": "yarn build",
|
|
"clean-deps": "rimraf node_modules",
|
|
"postinstall": "echo '@packages/electron needs: yarn build'",
|
|
"start": "./bin/cypress-electron",
|
|
"test": "yarn test-unit",
|
|
"test-debug": "yarn test-unit --inspect-brk=5566",
|
|
"test-unit": "mocha",
|
|
"test-watch": "yarn test-unit --watch"
|
|
},
|
|
"dependencies": {
|
|
"@packages/icons": "0.0.0-development",
|
|
"bluebird": "3.5.3",
|
|
"debug": "^4.3.2",
|
|
"fs-extra": "9.1.0",
|
|
"lodash": "^4.17.21",
|
|
"minimist": "1.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "15.3.4",
|
|
"electron-packager": "15.4.0",
|
|
"execa": "4.1.0",
|
|
"mocha": "3.5.3",
|
|
"rimraf": "3.0.2"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib"
|
|
],
|
|
"bin": {
|
|
"cypress-electron": "./bin/cypress-electron"
|
|
}
|
|
}
|