package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "camel-case",
  3. "version": "4.1.2",
  4. "description": "Transform into a string with the separator denoted by the next word capitalized",
  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. "camel",
  29. "case",
  30. "camelcase",
  31. "camel-case",
  32. "convert",
  33. "transform",
  34. "identifier"
  35. ],
  36. "author": {
  37. "name": "Blake Embrey",
  38. "email": "hello@blakeembrey.com",
  39. "url": "http://blakeembrey.me"
  40. },
  41. "license": "MIT",
  42. "bugs": {
  43. "url": "https://github.com/blakeembrey/change-case/issues"
  44. },
  45. "homepage": "https://github.com/blakeembrey/change-case/tree/master/packages/camel-case#readme",
  46. "size-limit": [
  47. {
  48. "path": "dist/index.js",
  49. "limit": "450 B"
  50. }
  51. ],
  52. "jest": {
  53. "roots": [
  54. "<rootDir>/src/"
  55. ],
  56. "transform": {
  57. "\\.tsx?$": "ts-jest"
  58. },
  59. "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
  60. "moduleFileExtensions": [
  61. "ts",
  62. "tsx",
  63. "js",
  64. "jsx",
  65. "json",
  66. "node"
  67. ]
  68. },
  69. "publishConfig": {
  70. "access": "public"
  71. },
  72. "dependencies": {
  73. "pascal-case": "^3.1.2",
  74. "tslib": "^2.0.3"
  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. }