package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "no-case",
  3. "version": "2.3.2",
  4. "description": "Remove case from a string",
  5. "main": "no-case.js",
  6. "typings": "no-case.d.ts",
  7. "files": [
  8. "no-case.js",
  9. "no-case.d.ts",
  10. "vendor",
  11. "LICENSE"
  12. ],
  13. "scripts": {
  14. "lint": "standard",
  15. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
  16. "test": "npm run lint && npm run test-cov",
  17. "build": "node build.js"
  18. },
  19. "standard": {
  20. "ignore": [
  21. "coverage/**"
  22. ]
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/blakeembrey/no-case.git"
  27. },
  28. "keywords": [
  29. "no",
  30. "case",
  31. "space",
  32. "lower",
  33. "trim"
  34. ],
  35. "author": {
  36. "name": "Blake Embrey",
  37. "email": "hello@blakeembrey.com",
  38. "url": "http://blakeembrey.me"
  39. },
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/blakeembrey/no-case/issues"
  43. },
  44. "homepage": "https://github.com/blakeembrey/no-case",
  45. "devDependencies": {
  46. "chai": "^4.0.2",
  47. "istanbul": "^0.4.3",
  48. "jsesc": "^2.2.0",
  49. "mocha": "^3.0.0",
  50. "standard": "^10.0.2",
  51. "xregexp": "^3.1.1"
  52. },
  53. "dependencies": {
  54. "lower-case": "^1.1.1"
  55. }
  56. }