forked from terinjokes/gulp-uglify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "gulp-uglify",
"description": "Minify files with UglifyJS.",
"version": "2.0.0",
"author": "Terin Stock <[email protected]>",
"bugs": "https://github.com/terinjokes/gulp-uglify/issues",
"dependencies": {
"gulplog": "^1.0.0",
"has-gulplog": "^0.1.0",
"lodash": "^4.13.1",
"make-error-cause": "^1.1.1",
"through2": "^2.0.0",
"uglify-js": "2.7.1",
"uglify-save-license": "^0.4.1",
"vinyl-sourcemaps-apply": "^0.2.0"
},
"devDependencies": {
"coveralls": "^2.11.4",
"gulp-concat": "^2.0.0",
"gulp-sourcemaps": "^1.0.0",
"intelli-espower-loader": "^1.0.1",
"istanbul": "^0.4.0",
"mississippi": "^1.2.0",
"mocha": "^3.0.1",
"power-assert": "^1.4.1",
"semver": "^5.3.0",
"tape": "^4.0.0",
"testdouble": "^1.6.0",
"vinyl": "^1.0.0",
"xo": "^0.16.0"
},
"homepage": "https://github.com/terinjokes/gulp-uglify/",
"keywords": [
"gulpplugin"
],
"license": "MIT",
"main": "index.js",
"repository": "https://github.com/terinjokes/gulp-uglify.git",
"xo": {
"space": true
},
"files": [
"index.js",
"minifier.js",
"lib/"
],
"scripts": {
"test": "xo && mocha --require intelli-espower-loader",
"coverage": "cat ./coverage/lcov.info | coveralls"
}
}