package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "pascal-case",
  3. "version": "1.1.2",
  4. "description": "Pascal case a string",
  5. "main": "pascal-case.js",
  6. "typings": "pascal-case.d.ts",
  7. "scripts": {
  8. "lint": "standard",
  9. "test-std": "mocha -- -R spec --bail",
  10. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
  11. "test": "npm run lint && npm run test-cov"
  12. },
  13. "files": [
  14. "pascal-case.js",
  15. "pascal-case.d.ts",
  16. "LICENSE"
  17. ],
  18. "repository": {
  19. "type": "git",
  20. "url": "git://github.com/blakeembrey/pascal-case.git"
  21. },
  22. "keywords": [
  23. "pascal",
  24. "case"
  25. ],
  26. "author": {
  27. "name": "Blake Embrey",
  28. "email": "hello@blakeembrey.com",
  29. "url": "http://blakeembrey.me"
  30. },
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/blakeembrey/pascal-case/issues"
  34. },
  35. "homepage": "https://github.com/blakeembrey/pascal-case",
  36. "devDependencies": {
  37. "istanbul": "^0.3.0",
  38. "mocha": "^2.2.1",
  39. "pre-commit": "^1.0.6",
  40. "standard": "^3.3.0"
  41. },
  42. "dependencies": {
  43. "camel-case": "^1.1.1",
  44. "upper-case-first": "^1.1.0"
  45. },
  46. "__npminstall_done": true,
  47. "_from": "pascal-case@1.1.2",
  48. "_resolved": "https://registry.npmmirror.com/pascal-case/-/pascal-case-1.1.2.tgz"
  49. }