Nenhuma descrição

package.json 1.1KB

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