mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-15 19:51:09 -06:00
* develop: (52 commits) feat: use hoisted yarn install in binary build (#17285) fix: compile npm packages for node 12 (#18989) fix: show call count even if `cy.stub().log(false)`. (#18907) chore: Update TypeScript to 4.4.4 (#18930) fix: wrap playground selectors in double quotes if not included (#18442) fix: flaky settings_spec test (#18979) chore: Update Chrome (stable) to 96.0.4664.45 (#18931) fix: Loading of specs with % in the filename (#18877) chore: refactor `create` into class `$Cy` (#18715) chore: Update Chrome (beta) to 96.0.4664.45 (#18891) fix: flaky `system-tests-firefox` job (#18848) chore: release @cypress/webpack-preprocessor-v5.10.0 chore: release @cypress/vue-v3.0.5 chore: release @cypress/schematic-v1.6.0 chore: release create-cypress-tests-v1.2.0 release 9.0.0 feat: ensure major release have conduit app wait on localhost:3000 fix install-required-node use --legacy-peer-deps ...
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "@packages/extension",
|
|
"version": "0.0.0-development",
|
|
"private": true,
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "gulp build",
|
|
"build-prod": "yarn build",
|
|
"clean": "gulp clean",
|
|
"clean-deps": "rimraf node_modules",
|
|
"postinstall": "echo '@packages/extension needs: yarn build'",
|
|
"test": "yarn test-unit",
|
|
"test-debug": "yarn test-unit --inspect-brk=5566",
|
|
"test-unit": "cross-env NODE_ENV=test mocha -r @packages/ts/register --reporter mocha-multi-reporters --reporter-options configFile=../../mocha-reporter-config.json",
|
|
"test-watch": "yarn test-unit --watch",
|
|
"watch": "webpack --watch --progress"
|
|
},
|
|
"dependencies": {
|
|
"bluebird": "3.5.3",
|
|
"lodash": "^4.17.21"
|
|
},
|
|
"devDependencies": {
|
|
"@cypress/icons": "0.7.0",
|
|
"@packages/socket": "0.0.0-development",
|
|
"chai": "3.5.0",
|
|
"coffeescript": "1.12.7",
|
|
"cross-env": "6.0.3",
|
|
"eol": "0.9.1",
|
|
"fs-extra": "8.1.0",
|
|
"gulp": "4.0.2",
|
|
"gulp-clean": "0.4.0",
|
|
"gulp-rename": "1.4.0",
|
|
"mocha": "3.5.3",
|
|
"mock-require": "3.0.3",
|
|
"rimraf": "3.0.2",
|
|
"sinon": "7.3.2",
|
|
"sinon-chai": "3.3.0",
|
|
"ts-loader": "8.0.13",
|
|
"webextension-polyfill": "0.4.0",
|
|
"webpack": "4.44.2"
|
|
},
|
|
"files": [
|
|
"app",
|
|
"dist",
|
|
"lib",
|
|
"theme"
|
|
]
|
|
}
|