package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. {
  2. "_args": [
  3. [
  4. "tsconfig-paths@3.9.0",
  5. "E:\\item\\newItem\\admin"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "tsconfig-paths@3.9.0",
  10. "_id": "tsconfig-paths@3.9.0",
  11. "_inBundle": false,
  12. "_integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==",
  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.9.0",
  21. "name": "tsconfig-paths",
  22. "escapedName": "tsconfig-paths",
  23. "rawSpec": "3.9.0",
  24. "saveSpec": null,
  25. "fetchSpec": "3.9.0"
  26. },
  27. "_requiredBy": [
  28. "/eslint-plugin-import"
  29. ],
  30. "_resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz",
  31. "_spec": "3.9.0",
  32. "_where": "E:\\item\\newItem\\admin",
  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": "^0.14.3",
  56. "lint-staged": "^4.3.0",
  57. "mocha": "^5.2.0",
  58. "nyc": "^11.4.1",
  59. "prettier": "1.7.4",
  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. "homepage": "https://github.com/dividab/tsconfig-paths#readme",
  67. "license": "MIT",
  68. "lint-staged": {
  69. "*.ts": [
  70. "tslint",
  71. "prettier --write",
  72. "git add"
  73. ]
  74. },
  75. "main": "lib/index.js",
  76. "name": "tsconfig-paths",
  77. "repository": {
  78. "type": "git",
  79. "url": "git+https://github.com/dividab/tsconfig-paths.git"
  80. },
  81. "scripts": {
  82. "build": "rimraf lib && tsc -p src",
  83. "build:test": "rimraf ./test/js_out && tsc -p test",
  84. "coverage": "rimraf coverage .nyc_output && nyc yarn test",
  85. "example:api": "cd example/api && ts-node main.ts",
  86. "example:node": "yarn build && cd ./example/node && ts-node -r ../register.js main.ts",
  87. "example:perf": "cd example/perf && ts-node main.ts",
  88. "example:project": "yarn build && ts-node -r ./register.js -P ./example/project/tsconfig.json ./example/project/main.ts",
  89. "lint": "tslint './{src,tests}/**/*.ts{,x}'",
  90. "postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
  91. "precommit": "lint-staged",
  92. "preversion": "yarn verify",
  93. "publish:major": "yarn build && node scripts/publish.js major",
  94. "publish:minor": "yarn build && node scripts/publish.js minor",
  95. "publish:patch": "yarn build && node scripts/publish.js patch",
  96. "report-coverage": "codecov -f coverage/*.json",
  97. "start": "cd src && ts-node index.ts",
  98. "test": "mocha",
  99. "verify": "yarn build && yarn lint && yarn coverage"
  100. },
  101. "types": "lib/index",
  102. "version": "3.9.0"
  103. }