package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "relateurl",
  3. "description": "Minify URLs by converting them from absolute to relative.",
  4. "version": "0.2.7",
  5. "license": "MIT",
  6. "homepage": "https://github.com/stevenvachon/relateurl",
  7. "author": {
  8. "name": "Steven Vachon",
  9. "email": "contact@svachon.com",
  10. "url": "http://www.svachon.com/"
  11. },
  12. "main": "lib",
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/stevenvachon/relateurl.git"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/stevenvachon/relateurl/issues"
  19. },
  20. "devDependencies": {
  21. "browserify": "^13.0.1",
  22. "chai": "^3.5.0",
  23. "mocha": "^2.5.3",
  24. "uglify-js": "^2.7.0"
  25. },
  26. "engines": {
  27. "node": ">= 0.10"
  28. },
  29. "scripts": {
  30. "browserify": "browserify lib/ --standalone RelateUrl | uglifyjs --compress --mangle -o relateurl-browser.js",
  31. "test": "mocha test/ --bail --reporter spec --check-leaks"
  32. },
  33. "files": [
  34. "lib",
  35. "license"
  36. ],
  37. "keywords": [
  38. "uri",
  39. "url",
  40. "minifier",
  41. "minify",
  42. "lint",
  43. "relative",
  44. "absolute"
  45. ],
  46. "__npminstall_done": true,
  47. "_from": "relateurl@0.2.7",
  48. "_resolved": "https://registry.npmmirror.com/relateurl/-/relateurl-0.2.7.tgz"
  49. }