This repository has been archived by the owner on Nov 12, 2022. It is now read-only.
forked from noBlubb/uglify-es-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.06 KB
/
package.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "uglifyjs-webpack-plugin",
"version": "0.4.3",
"description": "UglifyJS plugin for webpack",
"main": "dist/cjs.js",
"scripts": {
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'",
"test:all": "npm run test:coverage && npm run test:lint",
"test": "jest",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --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",
"webpack-defaults": "webpack-defaults",
"start": "yarn run build -- -w",
"prebuild": "yarn run clean",
"clean": "del-cli dist",
"lint": "eslint --cache src test examples",
"lint-staged": "lint-staged",
"prepublish": "yarn run build",
"release": "yarn run standard-version",
"security": "nsp check",
"travis:lint": "yarn run lint && yarn run security",
"travis:test": "yarn run test",
"travis:coverage": "yarn run test:coverage"
},
"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": {
"uglify-es": "^3.0.10",
"uglify-js": "^2.8.0",
"webpack": "^1.9 || ^2 || ^2.1.0-beta || ^2.2.0-rc"
},
"dependencies": {
"source-map": "^0.5.6",
"webpack-sources": "^0.2.3"
},
"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-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.18.0",
"cross-env": "^5.0.0",
"del-cli": "^1.0.0",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-config-webpack": "^1.2.3",
"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",
"lint-staged": "^3.5.0",
"nsp": "^2.6.3",
"pre-commit": "^1.2.2",
"standard-version": "^4.0.0",
"sync-exec": "^0.6.2",
"uglify-es": "^3.0.11",
"uglify-js": "^2.8.18",
"webpack": "^2.2.0",
"webpack-defaults": "^1.0.1"
},
"engines": {
"node": ">= 4.3 < 5.0.0 || >= 5.10"
},
"pre-push": [
"test:all"
],
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}