-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
43 lines (43 loc) · 950 Bytes
/
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
{
"name": "rollup-plugin-uglify",
"version": "6.0.4",
"description": "Rollup plugin to minify generated bundle",
"main": "index.js",
"files": [
"index.js",
"transform.js"
],
"scripts": {
"test": "jest --runInBand",
"prepublish": "yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TrySound/rollup-plugin-uglify.git"
},
"keywords": [
"rollup",
"rollup-plugin",
"uglify",
"minify"
],
"author": "Bogdan Chadkin <trysound@yandex.ru>",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.0.0",
"jest-worker": "^24.0.0",
"serialize-javascript": "^2.1.2",
"uglify-js": "^3.4.9"
},
"peerDependencies": {
"rollup": ">=0.66.0 <2"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babel-jest": "^24.0.0",
"jest": "^24.0.0",
"prettier": "^1.16.1",
"rollup": "^1.27.10"
}
}