diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 54 |
1 files changed, 28 insertions, 26 deletions
diff --git a/package.json b/package.json index 9977b10..d6e202c 100644 --- a/package.json +++ b/package.json @@ -2,14 +2,14 @@ "name": "vim-vixen", "description": "Vim vixen", "scripts": { - "start": "webpack -w --debug --devtool inline-source-map", - "build": "NODE_ENV=production webpack --progress --display-error-details", + "start": "webpack --mode development -w --debug --devtool inline-source-map", + "build": "NODE_ENV=production webpack --mode production --progress --display-error-details", "package": "npm run build && script/package.sh", "lint": "eslint --ext .jsx,.js src e2e/ambassador/src", "test": "karma start", "test:e2e": "karma start e2e/karma.conf.js", - "ambassador:start": "webpack -w --debug --context e2e/ambassador --config e2e/ambassador/webpack.config.js --devtool inline-source-map", - "ambassador:build": "webpack --context e2e/ambassador --config e2e/ambassador/webpack.config.js" + "ambassador:start": "webpack --mode production -w --debug --context e2e/ambassador --config e2e/ambassador/webpack.config.js --devtool inline-source-map", + "ambassador:build": "webpack --mode production --context e2e/ambassador --config e2e/ambassador/webpack.config.js" }, "repository": { "type": "git", @@ -22,31 +22,33 @@ }, "homepage": "https://github.com/ueokande/vim-vixen", "devDependencies": { - "adm-zip": "^0.4.7", - "babel-cli": "^6.24.1", - "babel-eslint": "^8.0.2", - "babel-loader": "^7.1.1", - "babel-minify-webpack-plugin": "^0.2.0", - "babel-preset-es2015": "^6.24.1", + "babel-cli": "^6.26.0", + "babel-eslint": "^8.2.3", + "babel-loader": "^7.1.4", "babel-preset-preact": "^1.1.0", - "chai": "^4.1.1", - "css-loader": "^0.28.4", - "eslint": "^4.7.0", - "eslint-plugin-react": "^7.4.0", - "html-webpack-plugin": "^2.30.1", - "karma": "^2.0.0", - "karma-firefox-launcher": "^1.0.1", + "chai": "^4.1.2", + "css-loader": "^0.28.11", + "eslint": "^4.19.1", + "eslint-plugin-react": "^7.8.2", + "html-webpack-plugin": "^3.2.0", + "karma": "^2.0.2", + "karma-firefox-launcher": "^1.1.0", "karma-html2js-preprocessor": "^1.1.0", "karma-mocha": "^1.3.0", - "karma-mocha-reporter": "^2.2.3", + "karma-mocha-reporter": "^2.2.5", + "karma-sinon": "^1.0.5", "karma-sourcemap-loader": "^0.3.7", - "karma-webpack": "^2.0.4", - "mocha": "^5.0.0", - "node-sass": "^4.5.3", - "preact": "^8.2.6", - "sass-loader": "^6.0.6", - "style-loader": "^0.19.0", - "web-ext": "github:ueokande/web-ext#patched-2.3.2", - "webpack": "^3.5.3" + "karma-webpack": "^3.0.0", + "mocha": "^5.1.1", + "node-firefox-connect": "^1.2.0", + "node-sass": "^4.9.0", + "preact": "^8.2.9", + "sass-loader": "^7.0.1", + "sinon-chrome": "^2.3.2", + "style-loader": "^0.21.0", + "web-ext": "github:ueokande/web-ext#patched-2.6.0", + "webextensions-api-fake": "^0.5.1", + "webpack": "^4.8.3", + "webpack-cli": "^3.0.7" } } |