This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
forked from wclr/ts-node-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.9 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ts-node-dev",
"version": "1.0.0-pre.31",
"description": "Compiles your TS app and restarts when files are modified.",
"keywords": [
"restart",
"reload",
"supervisor",
"monitor",
"watch"
],
"author": "Felix Gnass",
"contributors": [
"Daniel Gasienica <[email protected]> (https://github.com/gasi/)"
],
"repository": {
"type": "git",
"url": "http://github.com/whitecolor/ts-node-dev.git"
},
"license": "MIT",
"bin": {
"ts-node-dev": "./bin/ts-node-dev",
"tsnd": "./bin/ts-node-dev"
},
"main": "./lib",
"files": [
"bin",
"icons",
"lib"
],
"prettier": {
"singleQuote": true,
"semi": false
},
"preferGlobal": true,
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"ts-node-dev": "node ./bin/ts-node-dev",
"test-node-dev": "tap test/*.js",
"test": "node ./bin/ts-node-dev -r tsconfig-paths/register -r ./test/ts/add-require.js -r ./test/ts/add-require-2.js -O \"{\\\"module\\\": \\\"commonjs\\\"}\" --preserve-symlinks --respawn --ignore-watch 'lib' --ignore-watch bin --prefer-ts --debug --cache-directory .ts-node --inspect -- test/ts/test-script test-arg --fd",
"test-docker": "docker run --rm -v ${PWD}:/app mhart/alpine-node:8.7.0 sh -c 'cd app && node ./bin/ts-node-dev --cache-directory .ts-node test/ts/big'"
},
"dependencies": {
"dateformat": "~1.0.4-1.2.3",
"dynamic-dedupe": "^0.3.0",
"filewatcher": "~3.0.0",
"minimist": "^1.1.3",
"mkdirp": "^0.5.1",
"node-notifier": "^4.0.2",
"resolve": "^1.0.0",
"rimraf": "^2.6.1",
"ts-node": "*",
"tsconfig": "^7.0.0"
},
"devDependencies": {
"@types/node": "^8.0.4",
"coffee-script": "^1.8.0",
"eslint": "^2.0.0",
"eslint-config-airbnb-base": "^3.0.1",
"eslint-plugin-import": "^1.8.1",
"tap": "^5.2.0",
"touch": "^1.0.0",
"tsconfig-paths": "^3.3.1",
"typescript": "^2.3.4"
}
}