package.json 589 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "slugg",
  3. "version": "1.2.1",
  4. "description": "Make strings url safe (with no dependencies)",
  5. "publishConfig": {
  6. "registry": "http://registry.npmjs.org/"
  7. },
  8. "keywords": [
  9. "slug",
  10. "url",
  11. "string"
  12. ],
  13. "main": "slugg.js",
  14. "scripts": {
  15. "test": "./node_modules/.bin/mocha test -R spec",
  16. "test-browser": "./node_modules/.bin/mocha-srv test"
  17. },
  18. "devDependencies": {
  19. "mocha": "~1.7",
  20. "mocha-srv": "~0.1",
  21. "proclaim": "~1.2"
  22. },
  23. "repository": "git@github.com:bengourley/slugg.git",
  24. "author": "Ben Gourley",
  25. "license": "BSD"
  26. }