package.json 509 B

123456789101112131415161718192021
  1. {
  2. "name": "abbrev",
  3. "version": "1.1.1",
  4. "description": "Like ruby's abbrev module, but in js",
  5. "author": "Isaac Z. Schlueter <i@izs.me>",
  6. "main": "abbrev.js",
  7. "scripts": {
  8. "test": "tap test.js --100",
  9. "preversion": "npm test",
  10. "postversion": "npm publish",
  11. "postpublish": "git push origin --all; git push origin --tags"
  12. },
  13. "repository": "http://github.com/isaacs/abbrev-js",
  14. "license": "ISC",
  15. "devDependencies": {
  16. "tap": "^10.1"
  17. },
  18. "files": [
  19. "abbrev.js"
  20. ]
  21. }