package.json 878 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "grunt-contrib-uglify",
  3. "description": "Minify javascript files with UglifyJS",
  4. "version": "1.0.2",
  5. "author": {
  6. "name": "Grunt Team",
  7. "url": "http://gruntjs.com/"
  8. },
  9. "repository": "gruntjs/grunt-contrib-uglify",
  10. "license": "MIT",
  11. "engines": {
  12. "node": ">=0.10.0"
  13. },
  14. "main": "tasks/uglify.js",
  15. "scripts": {
  16. "test": "grunt test"
  17. },
  18. "dependencies": {
  19. "chalk": "^1.0.0",
  20. "lodash": "^4.0.1",
  21. "maxmin": "^1.1.0",
  22. "uglify-js": "~2.6.2",
  23. "uri-path": "^1.0.0"
  24. },
  25. "devDependencies": {
  26. "grunt": "^1.0.0",
  27. "grunt-contrib-clean": "^1.0.0",
  28. "grunt-contrib-internal": "^1.1.0",
  29. "grunt-contrib-jshint": "^1.0.0",
  30. "grunt-contrib-nodeunit": "^1.0.0"
  31. },
  32. "keywords": [
  33. "gruntplugin"
  34. ],
  35. "files": [
  36. "tasks"
  37. ],
  38. "appveyor_id": "ybtf5vbvtenii561"
  39. }