Ei kuvausta

package.json 823B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "humanize",
  3. "description": "Javascript string formatter for human readability",
  4. "homepage": "https://github.com/taijinlee/humanize",
  5. "keywords": [
  6. "util",
  7. "client",
  8. "browser"
  9. ],
  10. "author": {
  11. "name": "Tai-Jin Lee",
  12. "email": "taijin@gmail.com"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git://github.com/taijinlee/humanize.git"
  17. },
  18. "main": "humanize.js",
  19. "version": "0.0.9",
  20. "dependencies": {},
  21. "devDependencies": {
  22. "mocha": "1.0.3",
  23. "should": "0.6.3",
  24. "jshint": "0.7.1"
  25. },
  26. "optionalDependencies": {},
  27. "engines": {
  28. "node": "*"
  29. },
  30. "scripts": {
  31. "test": "./node_modules/jshint/bin/hint humanize.js; find specs -type f -a -name *.spec.js -exec ./node_modules/mocha/bin/mocha --globals requirejsVars -R list --require should {} \\;"
  32. }
  33. }