Nenhuma descrição

package.json 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "grunt-contrib-uglify",
  3. "description": "Minify files with UglifyJS.",
  4. "version": "0.6.0",
  5. "homepage": "https://github.com/gruntjs/grunt-contrib-uglify",
  6. "author": {
  7. "name": "Grunt Team",
  8. "url": "http://gruntjs.com/"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/gruntjs/grunt-contrib-uglify.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/gruntjs/grunt-contrib-uglify/issues"
  16. },
  17. "licenses": [
  18. {
  19. "type": "MIT",
  20. "url": "https://github.com/gruntjs/grunt-contrib-uglify/blob/master/LICENSE-MIT"
  21. }
  22. ],
  23. "engines": {
  24. "node": ">=0.10.0"
  25. },
  26. "scripts": {
  27. "test": "grunt test"
  28. },
  29. "dependencies": {
  30. "chalk": "^0.5.1",
  31. "lodash": "^2.4.1",
  32. "maxmin": "^1.0.0",
  33. "uglify-js": "^2.4.0",
  34. "uri-path": "0.0.2"
  35. },
  36. "devDependencies": {
  37. "grunt": "^0.4.2",
  38. "grunt-contrib-clean": "^0.6.0",
  39. "grunt-contrib-internal": "^0.4.2",
  40. "grunt-contrib-jshint": "^0.10.0",
  41. "grunt-contrib-nodeunit": "^0.4.0"
  42. },
  43. "peerDependencies": {
  44. "grunt": "~0.4.0"
  45. },
  46. "keywords": [
  47. "gruntplugin"
  48. ],
  49. "files": [
  50. "tasks",
  51. "LICENSE-MIT"
  52. ]
  53. }