package.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "_from": "tsconfig-paths@^3.9.0",
  3. "_id": "tsconfig-paths@3.9.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==",
  6. "_location": "/tsconfig-paths",
  7. "_phantomChildren": {
  8. "minimist": "1.2.5"
  9. },
  10. "_requested": {
  11. "type": "range",
  12. "registry": true,
  13. "raw": "tsconfig-paths@^3.9.0",
  14. "name": "tsconfig-paths",
  15. "escapedName": "tsconfig-paths",
  16. "rawSpec": "^3.9.0",
  17. "saveSpec": null,
  18. "fetchSpec": "^3.9.0"
  19. },
  20. "_requiredBy": [
  21. "/eslint-plugin-import"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz",
  24. "_shasum": "098547a6c4448807e8fcb8eae081064ee9a3c90b",
  25. "_spec": "tsconfig-paths@^3.9.0",
  26. "_where": "C:\\Users\\rickh\\Desktop\\js-hw-1\\hw1\\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.0",
  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/chai": "^4.1.4",
  44. "@types/minimist": "^1.2.0",
  45. "@types/mocha": "^5.2.3",
  46. "@types/node": "^6.0.54",
  47. "@types/strip-bom": "^3.0.0",
  48. "@types/strip-json-comments": "^0.0.30",
  49. "chai": "^4.1.2",
  50. "codecov": "^3.1.0",
  51. "husky": "^0.14.3",
  52. "lint-staged": "^4.3.0",
  53. "mocha": "^5.2.0",
  54. "nyc": "^11.4.1",
  55. "prettier": "1.7.4",
  56. "rimraf": "^2.6.2",
  57. "shelljs": "^0.7.5",
  58. "ts-node": "^7.0.0",
  59. "tslint": "^5.8.0",
  60. "typescript": "^2.4.1"
  61. },
  62. "homepage": "https://github.com/dividab/tsconfig-paths#readme",
  63. "license": "MIT",
  64. "lint-staged": {
  65. "*.ts": [
  66. "tslint",
  67. "prettier --write",
  68. "git add"
  69. ]
  70. },
  71. "main": "lib/index.js",
  72. "name": "tsconfig-paths",
  73. "repository": {
  74. "type": "git",
  75. "url": "git+https://github.com/dividab/tsconfig-paths.git"
  76. },
  77. "scripts": {
  78. "build": "rimraf lib && tsc -p src",
  79. "build:test": "rimraf ./test/js_out && tsc -p test",
  80. "coverage": "rimraf coverage .nyc_output && nyc yarn test",
  81. "example:api": "cd example/api && ts-node main.ts",
  82. "example:node": "yarn build && cd ./example/node && ts-node -r ../register.js main.ts",
  83. "example:perf": "cd example/perf && ts-node main.ts",
  84. "example:project": "yarn build && ts-node -r ./register.js -P ./example/project/tsconfig.json ./example/project/main.ts",
  85. "lint": "tslint './{src,tests}/**/*.ts{,x}'",
  86. "postversion": "git push --tags && yarn publish --new-version $npm_package_version && git push && echo \"Successfully released version $npm_package_version!\"",
  87. "precommit": "lint-staged",
  88. "preversion": "yarn verify",
  89. "publish:major": "yarn build && node scripts/publish.js major",
  90. "publish:minor": "yarn build && node scripts/publish.js minor",
  91. "publish:patch": "yarn build && node scripts/publish.js patch",
  92. "report-coverage": "codecov -f coverage/*.json",
  93. "start": "cd src && ts-node index.ts",
  94. "test": "mocha",
  95. "verify": "yarn build && yarn lint && yarn coverage"
  96. },
  97. "types": "lib/index",
  98. "version": "3.9.0"
  99. }