package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "sentence-case",
  3. "version": "3.0.4",
  4. "description": "Transform into a lower case with spaces between words, then capitalize the string",
  5. "main": "dist/index.js",
  6. "typings": "dist/index.d.ts",
  7. "module": "dist.es2015/index.js",
  8. "sideEffects": false,
  9. "jsnext:main": "dist.es2015/index.js",
  10. "files": [
  11. "dist/",
  12. "dist.es2015/",
  13. "LICENSE"
  14. ],
  15. "scripts": {
  16. "lint": "tslint \"src/**/*\" --project tsconfig.json",
  17. "build": "rimraf dist/ dist.es2015/ && tsc && tsc -P tsconfig.es2015.json",
  18. "specs": "jest --coverage",
  19. "test": "npm run build && npm run lint && npm run specs",
  20. "size": "size-limit",
  21. "prepare": "npm run build"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git://github.com/blakeembrey/change-case.git"
  26. },
  27. "keywords": [
  28. "sentence",
  29. "case",
  30. "lower",
  31. "capitalize",
  32. "convert",
  33. "transform"
  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/change-case/issues"
  43. },
  44. "homepage": "https://github.com/blakeembrey/change-case/tree/master/packages/sentence-case#readme",
  45. "size-limit": [
  46. {
  47. "path": "dist/index.js",
  48. "limit": "550 B"
  49. }
  50. ],
  51. "jest": {
  52. "roots": [
  53. "<rootDir>/src/"
  54. ],
  55. "transform": {
  56. "\\.tsx?$": "ts-jest"
  57. },
  58. "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
  59. "moduleFileExtensions": [
  60. "ts",
  61. "tsx",
  62. "js",
  63. "jsx",
  64. "json",
  65. "node"
  66. ]
  67. },
  68. "publishConfig": {
  69. "access": "public"
  70. },
  71. "dependencies": {
  72. "no-case": "^3.0.4",
  73. "tslib": "^2.0.3",
  74. "upper-case-first": "^2.0.2"
  75. },
  76. "devDependencies": {
  77. "@size-limit/preset-small-lib": "^2.2.1",
  78. "@types/jest": "^24.0.23",
  79. "@types/node": "^12.12.14",
  80. "jest": "^24.9.0",
  81. "rimraf": "^3.0.0",
  82. "ts-jest": "^24.2.0",
  83. "tslint": "^5.20.1",
  84. "tslint-config-prettier": "^1.18.0",
  85. "tslint-config-standard": "^9.0.0",
  86. "typescript": "^4.1.2"
  87. },
  88. "gitHead": "76a21a7f6f2a226521ef6abd345ff309cbd01fb0"
  89. }