package.json 477 B

12345678910111213141516171819202122
  1. {
  2. "name": "urlsafe-base64",
  3. "version": "1.0.0",
  4. "description": "URL Safe Base64 encoding",
  5. "keywords": ["base64", "encoding", "url", "util"],
  6. "author": "RGBboy <l-_-l@rgbboy.com>",
  7. "repository" : {
  8. "type" : "git",
  9. "url" : "http://github.com/RGBboy/urlsafe-base64"
  10. },
  11. "main": "index",
  12. "dependencies": {
  13. },
  14. "devDependencies": {
  15. "mocha": "1.5.x",
  16. "should": "1.2.x"
  17. },
  18. "scripts" : {
  19. "test" : "make test",
  20. "unit" : "make unit"
  21. }
  22. }