package.json 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. {
  2. "_args": [
  3. [
  4. "tsconfig-paths@3.14.2",
  5. "E:\\2023\\5\\myjadmin"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "tsconfig-paths@3.14.2",
  10. "_id": "tsconfig-paths@3.14.2",
  11. "_inBundle": false,
  12. "_integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==",
  13. "_location": "/tsconfig-paths",
  14. "_phantomChildren": {
  15. "minimist": "1.2.8"
  16. },
  17. "_requested": {
  18. "type": "version",
  19. "registry": true,
  20. "raw": "tsconfig-paths@3.14.2",
  21. "name": "tsconfig-paths",
  22. "escapedName": "tsconfig-paths",
  23. "rawSpec": "3.14.2",
  24. "saveSpec": null,
  25. "fetchSpec": "3.14.2"
  26. },
  27. "_requiredBy": [
  28. "/eslint-plugin-import"
  29. ],
  30. "_resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz",
  31. "_spec": "3.14.2",
  32. "_where": "E:\\2023\\5\\myjadmin",
  33. "author": {
  34. "name": "Jonas Kello"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/dividab/tsconfig-paths/issues"
  38. },
  39. "dependencies": {
  40. "@types/json5": "^0.0.29",
  41. "json5": "^1.0.2",
  42. "minimist": "^1.2.6",
  43. "strip-bom": "^3.0.0"
  44. },
  45. "description": "Load node modules according to tsconfig paths, in run-time or via API.",
  46. "devDependencies": {
  47. "@types/jest": "^27.0.3",
  48. "@types/minimist": "^1.2.2",
  49. "@types/node": "^6.0.54",
  50. "@types/strip-bom": "^3.0.0",
  51. "@types/strip-json-comments": "^0.0.30",
  52. "husky": "^4.2.5",
  53. "jest": "^27.3.1",
  54. "lint-staged": "^10.2.11",
  55. "prettier": "^2.0.5",
  56. "rimraf": "^2.6.2",
  57. "ts-jest": "^27.0.7",
  58. "ts-node": "^10.7.0",
  59. "tslint": "^5.8.0",
  60. "typescript": "^4.5.2"
  61. },
  62. "files": [
  63. "/src",
  64. "/lib",
  65. "register.js",
  66. "package.json",
  67. "CHANGELOG.md",
  68. "LICENSE",
  69. "README.md"
  70. ],
  71. "homepage": "https://github.com/dividab/tsconfig-paths#readme",
  72. "husky": {
  73. "hooks": {
  74. "pre-commit": "lint-staged"
  75. }
  76. },
  77. "license": "MIT",
  78. "lint-staged": {
  79. "*.{ts,tsx}": "tslint",
  80. "*.{ts,tsx,json,css}": [
  81. "prettier --write",
  82. "git add"
  83. ]
  84. },
  85. "main": "lib/index.js",
  86. "name": "tsconfig-paths",
  87. "repository": {
  88. "type": "git",
  89. "url": "git+https://github.com/dividab/tsconfig-paths.git"
  90. },
  91. "scripts": {
  92. "build": "rimraf lib && tsc -p .",
  93. "example:api": "cd example/api && ts-node main.ts",
  94. "example:node": "yarn build && cd ./example/node && ts-node -r ../register.js main.ts",
  95. "example:perf": "cd example/perf && ts-node main.ts",
  96. "example:project": "yarn build && ts-node -r ./register.js -P ./example/project/tsconfig.json ./example/project/main.ts",
  97. "lint": "tslint './{src,tests}/**/*.ts{,x}'",
  98. "postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
  99. "preversion": "yarn verify",
  100. "start": "cd src && ts-node index.ts",
  101. "test": "jest",
  102. "test-coverage": "jest --coverage",
  103. "verify": "yarn build && yarn lint && yarn test-coverage"
  104. },
  105. "types": "lib/index.d.ts",
  106. "version": "3.14.2"
  107. }