-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
65 lines (65 loc) · 1.37 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
{
"name": "webpack-parallel-uglify-plugin",
"version": "2.0.0",
"description": "A webpack plugin to run uglifyjs in parallel.",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html ava",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git://github.com/gdborton/webpack-parallel-uglify-plugin.git"
},
"keywords": [
"compress",
"compressor",
"min",
"minification",
"minifier",
"minify",
"optimize",
"optimizer",
"terser",
"uglify",
"uglify-es",
"uglify-js",
"webpack",
"webpack-plugin"
],
"ava": {
"require": [
"esm"
]
},
"author": "Gary Borton <[email protected]>",
"license": "ISC",
"devDependencies": {
"acorn": "^5.1.1",
"ava": "^3.12.1",
"coveralls": "^3.1.0",
"escodegen": "^1.8.1",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"esm": "^3.2.25",
"nyc": "^15.1.0",
"sinon": "^1.17.4",
"webpack": "^4.44.1"
},
"dependencies": {
"babel-code-frame": "^6.26.0",
"glob": "^7.0.5",
"mkdirp": "^0.5.1",
"pify": "^3.0.0",
"terser": "^5.3.5",
"tmp": "0.0.29",
"uglify-js": "^3.12.1",
"webpack-sources": "^1.0.0",
"worker-farm": "^1.3.1"
},
"peerDependencies": {
"webpack": "*"
}
}