forked from sudoorgza/tsc-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.08 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
{
"name": "tsc-watch",
"version": "4.2.7",
"description": "The TypeScript compiler with onSuccess command",
"scripts": {
"test": "mocha test/**/*.js"
},
"bin": {
"tsc-watch": "./index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/gilamran/tsc-watch.git"
},
"keywords": [
"TypeScript"
],
"engines": {
"node": ">=6.4.0"
},
"author": "Gil Amran",
"license": "MIT",
"bugs": {
"url": "https://github.com/gilamran/tsc-watch/issues"
},
"homepage": "https://github.com/gilamran/tsc-watch#readme",
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 100
},
"dependencies": {
"cross-spawn": "^5.1.0",
"node-cleanup": "^2.1.2",
"ps-tree": "^1.2.0",
"string-argv": "^0.1.1",
"strip-ansi": "^4.0.0"
},
"peerDependencies": {
"typescript": "*"
},
"devDependencies": {
"chai": "^4.2.0",
"fs-extra": "^5.0.0",
"mocha": "^7.1.2",
"mocha-eventually": "^1.1.0",
"sinon": "^9.0.2",
"typescript": "^3.3.3"
}
}