package.json 836 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name" : "uglify-js",
  3. "description" : "JavaScript parser and compressor/beautifier toolkit",
  4. "author" : {
  5. "name" : "Mihai Bazon",
  6. "email" : "mihai.bazon@gmail.com",
  7. "url" : "http://mihai.bazon.net/blog"
  8. },
  9. "version" : "1.3.5",
  10. "main" : "./uglify-js.js",
  11. "bin" : {
  12. "uglifyjs" : "./bin/uglifyjs"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git@github.com:mishoo/UglifyJS.git"
  17. },
  18. "devDependencies": {
  19. "nodeunit": "0.7.x"
  20. },
  21. "scripts": {
  22. "test": "$(which nodeunit || echo node_modules/nodeunit/bin/nodeunit) test/unit/scripts.js && test/testparser.js && test/testconsolidator.js"
  23. }
  24. }