package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. {
  2. "name": "pascal-case",
  3. "version": "3.1.2",
  4. "description": "Transform into a string of capitalized words without separators",
  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. "pascal",
  29. "case",
  30. "camel",
  31. "capital",
  32. "convert",
  33. "transform",
  34. "identifier",
  35. "class"
  36. ],
  37. "author": {
  38. "name": "Blake Embrey",
  39. "email": "hello@blakeembrey.com",
  40. "url": "http://blakeembrey.me"
  41. },
  42. "license": "MIT",
  43. "bugs": {
  44. "url": "https://github.com/blakeembrey/change-case/issues"
  45. },
  46. "homepage": "https://github.com/blakeembrey/change-case/tree/master/packages/pascal-case#readme",
  47. "size-limit": [
  48. {
  49. "path": "dist/index.js",
  50. "limit": "400 B"
  51. }
  52. ],
  53. "jest": {
  54. "roots": [
  55. "<rootDir>/src/"
  56. ],
  57. "transform": {
  58. "\\.tsx?$": "ts-jest"
  59. },
  60. "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
  61. "moduleFileExtensions": [
  62. "ts",
  63. "tsx",
  64. "js",
  65. "jsx",
  66. "json",
  67. "node"
  68. ]
  69. },
  70. "publishConfig": {
  71. "access": "public"
  72. },
  73. "dependencies": {
  74. "no-case": "^3.0.4",
  75. "tslib": "^2.0.3"
  76. },
  77. "devDependencies": {
  78. "@size-limit/preset-small-lib": "^2.2.1",
  79. "@types/jest": "^24.0.23",
  80. "@types/node": "^12.12.14",
  81. "jest": "^24.9.0",
  82. "rimraf": "^3.0.0",
  83. "ts-jest": "^24.2.0",
  84. "tslint": "^5.20.1",
  85. "tslint-config-prettier": "^1.18.0",
  86. "tslint-config-standard": "^9.0.0",
  87. "typescript": "^4.1.2"
  88. },
  89. "gitHead": "76a21a7f6f2a226521ef6abd345ff309cbd01fb0"
  90. }