package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. {
  2. "_args": [
  3. [
  4. "tsconfig-paths@3.11.0",
  5. "/Users/mac/Desktop/zz的项目/cdss/西安空军军医大学/cdss_xzrm"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "tsconfig-paths@3.11.0",
  10. "_id": "tsconfig-paths@3.11.0",
  11. "_inBundle": false,
  12. "_integrity": "sha1-lUwf6XPaYznHjgawPOLkiBC2XzY=",
  13. "_location": "/tsconfig-paths",
  14. "_phantomChildren": {
  15. "minimist": "1.2.5"
  16. },
  17. "_requested": {
  18. "type": "version",
  19. "registry": true,
  20. "raw": "tsconfig-paths@3.11.0",
  21. "name": "tsconfig-paths",
  22. "escapedName": "tsconfig-paths",
  23. "rawSpec": "3.11.0",
  24. "saveSpec": null,
  25. "fetchSpec": "3.11.0"
  26. },
  27. "_requiredBy": [
  28. "/eslint-plugin-import"
  29. ],
  30. "_resolved": "https://registry.nlark.com/tsconfig-paths/download/tsconfig-paths-3.11.0.tgz?cache=0&sync_timestamp=1629839709860&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ftsconfig-paths%2Fdownload%2Ftsconfig-paths-3.11.0.tgz",
  31. "_spec": "3.11.0",
  32. "_where": "/Users/mac/Desktop/zz的项目/cdss/西安空军军医大学/cdss_xzrm",
  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.1",
  42. "minimist": "^1.2.0",
  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/chai": "^4.1.4",
  48. "@types/minimist": "^1.2.0",
  49. "@types/mocha": "^5.2.3",
  50. "@types/node": "^6.0.54",
  51. "@types/strip-bom": "^3.0.0",
  52. "@types/strip-json-comments": "^0.0.30",
  53. "chai": "^4.1.2",
  54. "codecov": "^3.1.0",
  55. "husky": "^4.2.5",
  56. "lint-staged": "^10.2.11",
  57. "mocha": "^5.2.0",
  58. "nyc": "^11.4.1",
  59. "prettier": "^2.0.5",
  60. "rimraf": "^2.6.2",
  61. "shelljs": "^0.7.5",
  62. "ts-node": "^7.0.0",
  63. "tslint": "^5.8.0",
  64. "typescript": "^2.4.1"
  65. },
  66. "files": [
  67. "/src",
  68. "/lib",
  69. "register.js",
  70. "package.json",
  71. "CHANGELOG.md",
  72. "LICENSE",
  73. "README.md"
  74. ],
  75. "homepage": "https://github.com/dividab/tsconfig-paths#readme",
  76. "husky": {
  77. "hooks": {
  78. "pre-commit": "lint-staged"
  79. }
  80. },
  81. "license": "MIT",
  82. "lint-staged": {
  83. "*.{ts,tsx}": "tslint",
  84. "*.{ts,tsx,json,css}": [
  85. "prettier --write",
  86. "git add"
  87. ]
  88. },
  89. "main": "lib/index.js",
  90. "name": "tsconfig-paths",
  91. "repository": {
  92. "type": "git",
  93. "url": "git+https://github.com/dividab/tsconfig-paths.git"
  94. },
  95. "scripts": {
  96. "build": "rimraf lib && tsc -p src",
  97. "build:test": "rimraf ./test/js_out && tsc -p test",
  98. "coverage": "rimraf coverage .nyc_output && nyc yarn test",
  99. "example:api": "cd example/api && ts-node main.ts",
  100. "example:node": "yarn build && cd ./example/node && ts-node -r ../register.js main.ts",
  101. "example:perf": "cd example/perf && ts-node main.ts",
  102. "example:project": "yarn build && ts-node -r ./register.js -P ./example/project/tsconfig.json ./example/project/main.ts",
  103. "lint": "tslint './{src,tests}/**/*.ts{,x}'",
  104. "postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
  105. "preversion": "yarn verify",
  106. "publish:major": "yarn build && node scripts/publish.js major",
  107. "publish:minor": "yarn build && node scripts/publish.js minor",
  108. "publish:patch": "yarn build && node scripts/publish.js patch",
  109. "report-coverage": "codecov -f coverage/*.json",
  110. "start": "cd src && ts-node index.ts",
  111. "test": "mocha",
  112. "verify": "yarn build && yarn lint && yarn coverage"
  113. },
  114. "types": "lib/index.d.ts",
  115. "version": "3.11.0"
  116. }