/usr/lib/nodejs/uglifyjs-webpack-plugin/package.json is in node-uglifyjs-webpack-plugin 0.4.6-4build3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | {
"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"
]
}
|