mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-21 06:30:01 -06:00
38 lines
895 B
JSON
38 lines
895 B
JSON
{
|
|
"name": "@packages/electron",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "node ./bin/cypress-electron --install",
|
|
"build-prod": "yarn build",
|
|
"clean-deps": "rm -rf 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": {
|
|
"@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.19",
|
|
"minimist": "1.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "9.2.1",
|
|
"mocha": "3.5.3"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib"
|
|
],
|
|
"bin": {
|
|
"cypress-electron": "./bin/cypress-electron"
|
|
}
|
|
}
|