forked from terinjokes/gulp-uglify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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
{
"name": "gulp-uglify",
"description": "Minify files with UglifyJS.",
"version": "1.4.2",
"author": "Terin Stock <terinjokes@gmail.com>",
"bugs": "https://github.com/terinjokes/gulp-uglify/issues",
"dependencies": {
"deap": "^1.0.0",
"fancy-log": "^1.0.0",
"gulp-util": "^3.0.0",
"isobject": "^2.0.0",
"through2": "^2.0.0",
"uglify-js": "2.5.0",
"uglify-save-license": "^0.4.1",
"vinyl-sourcemaps-apply": "^0.2.0"
},
"devDependencies": {
"cmem": "^1.0.0",
"coveralls": "^2.11.4",
"gulp-concat": "^2.0.0",
"gulp-sourcemaps": "^1.0.0",
"istanbul": "^0.4.0",
"tape": "^4.0.0",
"vinyl": "^1.0.0",
"xo": "^0.10.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
},
"scripts": {
"test": "xo && istanbul cover ./node_modules/tape/bin/tape test/*.js",
"coverage": "cat ./coverage/lcov.info | coveralls"
}
}