package.json 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. {
  2. "_from": "ts-node@^9",
  3. "_id": "ts-node@9.1.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==",
  6. "_location": "/ts-node",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "ts-node@^9",
  12. "name": "ts-node",
  13. "escapedName": "ts-node",
  14. "rawSpec": "^9",
  15. "saveSpec": null,
  16. "fetchSpec": "^9"
  17. },
  18. "_requiredBy": [
  19. "/@endemolshinegroup/cosmiconfig-typescript-loader"
  20. ],
  21. "_resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz",
  22. "_shasum": "51a9a450a3e959401bda5f004a72d54b936d376d",
  23. "_spec": "ts-node@^9",
  24. "_where": "H:\\gs_nuxt\\node_modules\\@endemolshinegroup\\cosmiconfig-typescript-loader",
  25. "author": {
  26. "name": "Blake Embrey",
  27. "email": "hello@blakeembrey.com",
  28. "url": "http://blakeembrey.me"
  29. },
  30. "bin": {
  31. "ts-node": "dist/bin.js",
  32. "ts-script": "dist/bin-script-deprecated.js",
  33. "ts-node-script": "dist/bin-script.js",
  34. "ts-node-transpile-only": "dist/bin-transpile.js"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/TypeStrong/ts-node/issues"
  38. },
  39. "bundleDependencies": false,
  40. "dependencies": {
  41. "arg": "^4.1.0",
  42. "create-require": "^1.1.0",
  43. "diff": "^4.0.1",
  44. "make-error": "^1.1.1",
  45. "source-map-support": "^0.5.17",
  46. "yn": "3.1.1"
  47. },
  48. "deprecated": false,
  49. "description": "TypeScript execution environment and REPL for node.js, with source map support",
  50. "devDependencies": {
  51. "@types/chai": "^4.0.4",
  52. "@types/diff": "^4.0.2",
  53. "@types/lodash": "^4.14.151",
  54. "@types/mocha": "^5.2.7",
  55. "@types/node": "13.13.5",
  56. "@types/proxyquire": "^1.3.28",
  57. "@types/react": "^16.0.2",
  58. "@types/rimraf": "^3.0.0",
  59. "@types/semver": "^7.1.0",
  60. "@types/source-map-support": "^0.5.0",
  61. "axios": "^0.19.0",
  62. "chai": "^4.0.1",
  63. "get-stream": "^6.0.0",
  64. "lodash": "^4.17.15",
  65. "mocha": "^6.2.2",
  66. "ntypescript": "^1.201507091536.1",
  67. "nyc": "^15.0.1",
  68. "proxyquire": "^2.0.0",
  69. "react": "^16.0.0",
  70. "rimraf": "^3.0.0",
  71. "semver": "^7.1.3",
  72. "tslint": "^6.1.0",
  73. "tslint-config-standard": "^9.0.0",
  74. "typescript": "4.1.2",
  75. "typescript-json-schema": "^0.42.0",
  76. "util.promisify": "^1.0.1"
  77. },
  78. "engines": {
  79. "node": ">=10.0.0"
  80. },
  81. "exports": {
  82. ".": "./dist/index.js",
  83. "./package": "./package.json",
  84. "./package.json": "./package.json",
  85. "./dist/bin": "./dist/bin.js",
  86. "./dist/bin.js": "./dist/bin.js",
  87. "./dist/bin-transpile": "./dist/bin-transpile.js",
  88. "./dist/bin-transpile.js": "./dist/bin-transpile.js",
  89. "./dist/bin-script": "./dist/bin-script.js",
  90. "./dist/bin-script.js": "./dist/bin-script.js",
  91. "./register": "./register/index.js",
  92. "./register/files": "./register/files.js",
  93. "./register/transpile-only": "./register/transpile-only.js",
  94. "./register/type-check": "./register/type-check.js",
  95. "./esm": "./esm.mjs",
  96. "./esm.mjs": "./esm.mjs",
  97. "./esm/transpile-only": "./esm/transpile-only.mjs",
  98. "./esm/transpile-only.mjs": "./esm/transpile-only.mjs"
  99. },
  100. "files": [
  101. "dist/",
  102. "dist-raw/",
  103. "register/",
  104. "esm/",
  105. "esm.mjs",
  106. "LICENSE",
  107. "tsconfig.schema.json",
  108. "tsconfig.schemastore-schema.json"
  109. ],
  110. "homepage": "https://github.com/TypeStrong/ts-node",
  111. "keywords": [
  112. "typescript",
  113. "node",
  114. "runtime",
  115. "environment",
  116. "ts",
  117. "compiler"
  118. ],
  119. "license": "MIT",
  120. "main": "dist/index.js",
  121. "name": "ts-node",
  122. "peerDependencies": {
  123. "typescript": ">=2.7"
  124. },
  125. "repository": {
  126. "type": "git",
  127. "url": "git://github.com/TypeStrong/ts-node.git"
  128. },
  129. "scripts": {
  130. "build": "npm run build-nopack && npm run build-pack",
  131. "build-configSchema": "typescript-json-schema --topRef --refs --validationKeywords allOf --out tsconfig.schema.json tsconfig.json TsConfigSchema && node --require ./register ./scripts/create-merged-schema",
  132. "build-nopack": "npm run clean && npm run build-tsc && npm run build-configSchema",
  133. "build-pack": "node ./scripts/build-pack.js",
  134. "build-tsc": "tsc",
  135. "clean": "rimraf dist && rimraf tsconfig.schema.json && rimraf tsconfig.schemastore-schema.json && rimraf tests/ts-node-packed.tgz",
  136. "coverage-report": "nyc report --reporter=lcov",
  137. "lint": "tslint \"src/**/*.ts\" --project tsconfig.json",
  138. "lint-fix": "tslint \"src/**/*.ts\" --project tsconfig.json --fix",
  139. "prepare": "npm run build-nopack",
  140. "test": "npm run build && npm run lint && npm run test-cov --",
  141. "test-cov": "nyc mocha -- \"dist/**/*.spec.js\" -R spec --bail",
  142. "test-spec": "mocha dist/**/*.spec.js -R spec --bail"
  143. },
  144. "types": "dist/index.d.ts",
  145. "version": "9.1.1"
  146. }