package.json 1.8 KB

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