package.json 3.0 KB

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