mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-04 14:19:55 -06:00
* electron: upgrade to 1.8.2, node 8.2.1, chromium 59 * server: update snapshots for node * server: try to debug timeouts for mochawesome * bump zunder - node-sass 3.13.1 does not work with Node 8, since we’re upgrading the project to node 8.2.1, we needed node-sass 4.5.3+. This node-sass dep was coming from gulp-sass dep in zunder which has since been updated * server: figured out that fixture scaffolding can cause timeouts * bump zunder - get fix so that asserts are not prefixed with / * server: use our own heroku example app * use cypress/browsers:chrome64 docker image on Circle with Node 8 * update root folder name * add hash to root cache * disable permissions test, because cannot run as root * server: only disable test in CI * test new binary against other projects * all: rename cypress-monorepo -> cypress * scripts: use latest docker container * server: don't skip as this messes up hooks which cause failures downstream * driver: bump timeout for zonejs * server: make tests pass for node 8.2.1 and 8.4.0
36 lines
845 B
JSON
36 lines
845 B
JSON
{
|
|
"name": "@packages/electron",
|
|
"version": "0.0.0",
|
|
"electronVersion": "1.8.2",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"postinstall": "echo '@packages/electron needs: npm run build'",
|
|
"start": "./bin/cypress-electron",
|
|
"test": "mocha --compilers coffee:@packages/coffee/register",
|
|
"build": "node ./bin/cypress-electron --install",
|
|
"clean-deps": "rm -rf node_modules"
|
|
},
|
|
"bin": {
|
|
"cypress-electron": "./bin/cypress-electron"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"lib"
|
|
],
|
|
"devDependencies": {
|
|
"@cypress/releaser": "0.1.12",
|
|
"chai": "^3.5.0",
|
|
"mocha": "^3.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@cypress/icons": "^0.6.0",
|
|
"bluebird": "^3.4.1",
|
|
"debug": "^3.0.1",
|
|
"electron-packager": "9.0.1",
|
|
"fs-extra": "^0.30.0",
|
|
"lodash": "^4.15.0",
|
|
"minimist": "^1.2.0"
|
|
}
|
|
}
|