1234567891011121314151617181920212223242526272829303132333435 |
- {
- "type": "module",
- "scripts": {
- "build:dev": "webpack",
- "build:watch": "webpack --watch",
- "lint": "prettier --list-different '{src,test}/**/*.js'",
- "test": "NODE_PATH=src:test mocha"
- },
- "babel": {
- "presets": [
- "es2015"
- ]
- },
- "devDependencies": {
- "babel-eslint": "^8.2.6",
- "babel-loader": "^8.2.5",
- "babel-preset-es2015": "^6.24.1",
- "babel-register": "^6.26.0",
- "chai": "^4.3.6",
- "copy-webpack-plugin": "^11.0.0",
- "eslint": "^8.20.0",
- "mocha": "^10.0.0",
- "prettier": "2.7.1",
- "sinon": "^14.0.0",
- "strip-ansi": "^7.0.1",
- "web-ext": "^7.5.0",
- "webpack": "^5.73.0",
- "webpack-cli": "^4.10.0"
- },
- "dependencies": {
- "lodash": "^4.17.21",
- "string-width": "^5.1.2"
- }
- }
|