Files
cypress/packages/extension/package.json
T
Bill Glesias f14a11aecf chore: update eslint from version 7 to version 8 (#29355)
* chore: (for eslint-plugin-dev only is breaking) update eslint-plugin dev minimum to eslint 7. Remove support for coffeescript and reconfigured required peer deps

* correctly configure eslint-plugin-json-format for the monorepo and run linting on all json files (previously was not running)

* properly support no duplicate imports
2024-04-26 14:42:33 -04:00

46 lines
1.3 KiB
JSON

{
"name": "@packages/extension",
"version": "0.0.0-development",
"private": true,
"main": "index.js",
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"clean-deps": "rimraf node_modules",
"postinstall": "echo '@packages/extension needs: yarn build'",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json, .",
"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": "yarn build && chokidar 'app/**/*.*' 'app/*.*' -c 'yarn build'"
},
"dependencies": {
"bluebird": "3.5.3",
"lodash": "^4.17.21"
},
"devDependencies": {
"@packages/icons": "0.0.0-development",
"@packages/socket": "0.0.0-development",
"chai": "3.5.0",
"chokidar-cli": "2.1.0",
"cross-env": "6.0.3",
"eol": "0.9.1",
"fs-extra": "9.1.0",
"gulp": "4.0.2",
"mocha": "3.5.3",
"mock-require": "3.0.3",
"sinon": "7.3.2",
"sinon-chai": "3.3.0",
"ts-loader": "9.4.4",
"webextension-polyfill": "0.4.0",
"webpack": "^5.88.2"
},
"files": [
"app",
"dist",
"lib",
"theme"
]
}