UNPKG

2.38 kBJSONView Raw
1{
2 "name": "ts-node-dev",
3 "version": "1.0.0-pre.61",
4 "description": "Compiles your TS app and restarts when files are modified.",
5 "keywords": [
6 "restart",
7 "reload",
8 "supervisor",
9 "monitor",
10 "watch"
11 ],
12 "repository": {
13 "type": "git",
14 "url": "http://github.com/whitecolor/ts-node-dev.git"
15 },
16 "license": "MIT",
17 "bin": {
18 "ts-node-dev": "./lib/bin.js",
19 "tsnd": "./lib/bin.js"
20 },
21 "main": "./lib",
22 "files": [
23 "icons",
24 "lib"
25 ],
26 "prettier": {
27 "singleQuote": true,
28 "semi": false
29 },
30 "preferGlobal": true,
31 "engines": {
32 "node": ">=0.8.0"
33 },
34 "scripts": {
35 "ts-node-dev": "node ./lib/bin",
36 "tsnd": "yarn ts-node-dev",
37 "test": "ts-node -T node_modules/mocha/bin/mocha test/*.test.ts",
38 "test-dev": "yarn ts-node-dev -T --respawn --deps --watch lib node_modules/mocha/bin/mocha test/*.test.ts --output",
39 "test-docker": "docker-compose up",
40 "ci": "yarn test",
41 "ci-local": "docker run --name travis-debug -dit quay.io/travisci/ci-nodejs",
42 "manual": "yarn ts-node test/manual/run.ts"
43 },
44 "dependencies": {
45 "chokidar": "^3.4.0",
46 "dateformat": "~1.0.4-1.2.3",
47 "dynamic-dedupe": "^0.3.0",
48 "minimist": "^1.2.5",
49 "mkdirp": "^1.0.4",
50 "resolve": "^1.0.0",
51 "rimraf": "^2.6.1",
52 "source-map-support": "^0.5.12",
53 "tree-kill": "^1.2.2",
54 "ts-node": "^8.10.2",
55 "tsconfig": "^7.0.0"
56 },
57 "devDependencies": {
58 "@types/chai": "^4.2.12",
59 "@types/chokidar": "^2.1.3",
60 "@types/fs-extra": "^9.0.1",
61 "@types/minimist": "^1.2.0",
62 "@types/mkdirp": "^1.0.1",
63 "@types/mocha": "github:whitecolor/mocha-types",
64 "@types/node": "^14.6.0",
65 "@types/rimraf": "^3.0.0",
66 "@types/tape": "^4.13.0",
67 "@types/touch": "^3.1.1",
68 "@types/ts-nameof": "^4.2.1",
69 "@whitecolor/eslint-config": "file:.yalc/@whitecolor/eslint-config",
70 "chai": "^4.2.0",
71 "coffee-script": "^1.8.0",
72 "eslint": "^7.7.0",
73 "esm": "^3.2.22",
74 "fs-extra": "^9.0.1",
75 "mocha": "^8.1.1",
76 "tap": "^5.2.0",
77 "tape": "^5.0.1",
78 "touch": "^1.0.0",
79 "ts-nameof": "^5.0.0",
80 "tsconfig-paths": "^3.3.1",
81 "ttypescript": "^1.5.10",
82 "typescript": "^3.9.5"
83 },
84 "peerDependencies": {
85 "node-notifier": "*",
86 "typescript": "*"
87 },
88 "peerDependenciesMeta": {
89 "node-notifier": {
90 "optional": true
91 }
92 }
93}