UNPKG

1.83 kBJSONView Raw
1{
2 "name": "gulp-uglify",
3 "description": "Minify files with UglifyJS.",
4 "version": "3.0.2",
5 "author": "Terin Stock <terinjokes@gmail.com>",
6 "bugs": "https://github.com/terinjokes/gulp-uglify/issues",
7 "dependencies": {
8 "array-each": "^1.0.1",
9 "extend-shallow": "^3.0.2",
10 "gulplog": "^1.0.0",
11 "has-gulplog": "^0.1.0",
12 "isobject": "^3.0.1",
13 "make-error-cause": "^1.1.1",
14 "safe-buffer": "^5.1.2",
15 "through2": "^2.0.0",
16 "uglify-js": "^3.0.5",
17 "vinyl-sourcemaps-apply": "^0.2.0"
18 },
19 "devDependencies": {
20 "eslint": "^3.18.0",
21 "eslint-config-prettier": "^2.1.0",
22 "eslint-config-xo": "^0.18.1",
23 "eslint-plugin-no-use-extend-native": "^0.3.12",
24 "eslint-plugin-prettier": "^2.0.1",
25 "eslint-plugin-unicorn": "^2.1.0",
26 "power-assert": "^1.4.1",
27 "prettier": "^1.1.0",
28 "source-list-map": "^1.1.2",
29 "tape": "^4.9.1",
30 "tape-catch": "^1.0.6",
31 "testdouble": "^2.1.2",
32 "vinyl": "^2.0.0"
33 },
34 "homepage": "https://github.com/terinjokes/gulp-uglify/",
35 "keywords": [
36 "gulpplugin"
37 ],
38 "license": "MIT",
39 "main": "index.js",
40 "repository": "terinjokes/gulp-uglify",
41 "eslintConfig": {
42 "env": {
43 "node": true
44 },
45 "extends": [
46 "xo",
47 "prettier"
48 ],
49 "plugins": [
50 "unicorn",
51 "no-use-extend-native",
52 "prettier"
53 ],
54 "rules": {
55 "prettier/prettier": [
56 "error",
57 {
58 "printWidth": 80,
59 "tabWidth": 2,
60 "singleQuote": true,
61 "trailingComma": "none",
62 "bracketSpacing": false
63 }
64 ]
65 }
66 },
67 "files": [
68 "index.js",
69 "composer.js",
70 "lib/"
71 ],
72 "scripts": {
73 "lint": "eslint *.js lib test",
74 "test": "tape test/*.js"
75 },
76 "greenkeeper": {
77 "ignore": [
78 "gulp-sourcemaps"
79 ]
80 }
81}