package.json 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. {
  2. "name": "ts-node",
  3. "version": "7.0.1",
  4. "description": "TypeScript execution environment and REPL for node.js, with source map support",
  5. "main": "dist/index.js",
  6. "types": "dist/index.d.ts",
  7. "bin": {
  8. "ts-node": "dist/bin.js"
  9. },
  10. "files": [
  11. "dist/",
  12. "register/",
  13. "LICENSE"
  14. ],
  15. "scripts": {
  16. "lint": "tslint \"src/**/*.ts\" --project tsconfig.json",
  17. "clean": "rimraf dist",
  18. "tsc": "tsc",
  19. "build": "npm run clean && npm run tsc",
  20. "test-spec": "mocha dist/**/*.spec.js -R spec --bail",
  21. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- \"dist/**/*.spec.js\" -R spec --bail",
  22. "test": "npm run build && npm run lint && npm run test-cov",
  23. "prepublish": "npm run build"
  24. },
  25. "engines": {
  26. "node": ">=4.2.0"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git://github.com/TypeStrong/ts-node.git"
  31. },
  32. "keywords": [
  33. "typescript",
  34. "node",
  35. "runtime",
  36. "environment",
  37. "ts",
  38. "compiler"
  39. ],
  40. "author": {
  41. "name": "Blake Embrey",
  42. "email": "hello@blakeembrey.com",
  43. "url": "http://blakeembrey.me"
  44. },
  45. "license": "MIT",
  46. "bugs": {
  47. "url": "https://github.com/TypeStrong/ts-node/issues"
  48. },
  49. "homepage": "https://github.com/TypeStrong/ts-node",
  50. "devDependencies": {
  51. "@types/arrify": "^1.0.1",
  52. "@types/buffer-from": "^1.1.0",
  53. "@types/chai": "^4.0.4",
  54. "@types/diff": "^3.2.1",
  55. "@types/minimist": "^1.2.0",
  56. "@types/mkdirp": "^0.5.0",
  57. "@types/mocha": "^5.0.0",
  58. "@types/node": "^10.0.3",
  59. "@types/proxyquire": "^1.3.28",
  60. "@types/react": "^16.0.2",
  61. "@types/semver": "^5.3.34",
  62. "@types/source-map-support": "^0.4.0",
  63. "@types/yn": "types/npm-yn#ca75f6c82940fae6a06fb41d2d37a6aa9b4ea8e9",
  64. "chai": "^4.0.1",
  65. "istanbul": "^0.4.0",
  66. "mocha": "^5.0.1",
  67. "ntypescript": "^1.201507091536.1",
  68. "proxyquire": "^2.0.0",
  69. "react": "^16.0.0",
  70. "rimraf": "^2.5.4",
  71. "semver": "^5.1.0",
  72. "tslint": "^5.0.0",
  73. "tslint-config-standard": "^7.0.0",
  74. "typescript": "^2.8.3"
  75. },
  76. "dependencies": {
  77. "arrify": "^1.0.0",
  78. "buffer-from": "^1.1.0",
  79. "diff": "^3.1.0",
  80. "make-error": "^1.1.1",
  81. "minimist": "^1.2.0",
  82. "mkdirp": "^0.5.1",
  83. "source-map-support": "^0.5.6",
  84. "yn": "^2.0.0"
  85. }
  86. }