package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "i",
  3. "version": "0.3.7",
  4. "author": "Pavan Kumar Sunkara <pavan.sss1991@gmail.com> (pksunkara.github.com)",
  5. "description": "custom inflections for nodejs",
  6. "main": "./lib/inflect",
  7. "repository": {
  8. "type": "git",
  9. "url": "git://github.com/pksunkara/inflect.git"
  10. },
  11. "keywords": [
  12. "singular",
  13. "plural",
  14. "camelize",
  15. "underscore",
  16. "dasherize",
  17. "demodulize",
  18. "ordinalize",
  19. "uncountable",
  20. "pluralize",
  21. "singularize",
  22. "titleize",
  23. "tableize",
  24. "classify",
  25. "foreign_key"
  26. ],
  27. "homepage": "http://pksunkara.github.com/inflect",
  28. "scripts": {
  29. "test": "./node_modules/.bin/vows --spec $(find test -name '*-test.js')"
  30. },
  31. "contributors": [
  32. {
  33. "name": "Pavan Kumar Sunkara",
  34. "email": "pavan.sss1991@gmail.com"
  35. }
  36. ],
  37. "dependencies": {},
  38. "devDependencies": {
  39. "vows": "^0.8.2"
  40. },
  41. "engines": {
  42. "node": ">=0.4"
  43. },
  44. "bugs": {
  45. "url": "https://github.com/pksunkara/inflect/issues"
  46. },
  47. "licenses": [
  48. {
  49. "type": "MIT",
  50. "url": "https://github.com/pksunkara/inflect/raw/master/LICENSE"
  51. }
  52. ]
  53. }