{ "name": "uglifyjs-webpack-plugin", "version": "0.4.6", "description": "UglifyJS plugin for webpack", "main": "./dist", "scripts": { "build": "babel src -d dist", "test:all": "npm run test:coverage && npm run test:lint", "test": "jest --", "test:coverage": "jest --coverage --", "test:watch": "jest --watch --", "test:lint": "eslint . --ext .js --ignore-path .gitignore --cache", "preversion": "npm run test:all && npm run build && git commit --allow-empty -am \"Update dist\"", "postinstall": "node lib/post_install.js" }, "repository": { "type": "git", "url": "https://github.com/webpack-contrib/uglifyjs-webpack-plugin.git" }, "keywords": [ "webpack", "uglifyjs", "plugin" ], "files": [ "dist", "lib" ], "jest": { "collectCoverage": true, "moduleFileExtensions": [ "js" ], "moduleDirectories": [ "node_modules" ] }, "author": "", "license": "MIT", "bugs": { "url": "https://github.com/webpack-contrib/uglifyjs-webpack-plugin/issues" }, "homepage": "https://github.com/webpack-contrib/uglifyjs-webpack-plugin", "peerDependencies": { "webpack": "^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc || ^3.0.0" }, "dependencies": { "source-map": "^0.5.6", "uglify-js": "^2.8.29", "webpack-sources": "^1.0.1" }, "devDependencies": { "babel-cli": "^6.18.0", "babel-core": "^6.21.0", "babel-eslint": "^7.1.1", "babel-jest": "^18.0.0", "babel-plugin-syntax-object-rest-spread": "^6.13.0", "babel-plugin-transform-object-rest-spread": "^6.20.2", "babel-preset-es2015": "^6.18.0", "eslint": "^3.13.1", "eslint-config-airbnb": "^14.0.0", "eslint-plugin-import": "^2.2.0", "eslint-plugin-jsx-a11y": "^3.0.2", "eslint-plugin-node": "^4.0.1", "eslint-plugin-react": "^6.9.0", "git-prepush-hook": "^1.0.1", "jest": "^18.1.0", "sync-exec": "^0.6.2", "webpack": "^2.2.0" }, "engines": { "node": ">=4.3.0 <5.0.0 || >=5.10" }, "pre-push": [ "test:all" ] }