-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
40 lines (40 loc) · 897 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
{
"name": "uglifyify",
"version": "5.0.2",
"description": "A browserify transform which minifies your code using UglifyJS2",
"main": "index.js",
"dependencies": {
"convert-source-map": "~1.1.0",
"minimatch": "^3.0.2",
"terser": "^3.7.5",
"through": "~2.3.4",
"xtend": "^4.0.1"
},
"devDependencies": {
"bl": "^0.9.3",
"browserify": "^8.1.1",
"from2": "^1.3.0",
"tap-spec": "^2.1.2",
"tape": "^3.2.0",
"wrap-stream": "^2.0.0"
},
"scripts": {
"test": "node test | tap-spec"
},
"repository": {
"type": "git",
"url": "git://github.com/hughsk/uglifyify.git"
},
"keywords": [
"uglify",
"minify",
"compress",
"compile",
"browserify",
"transform",
"stream"
],
"author": "Hugh Kennedy <hughskennedy@gmail.com> (http://hughskennedy.com/)",
"license": "MIT",
"readmeFilename": "README.md"
}