-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.14 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
{
"name": "tsc-with-cleanup",
"version": "0.1.4",
"description": "A simple script that that can be used to cleanup previously transpiled typescript files.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc"
},
"author": "AlanWalk",
"license": "MIT",
"homepage": "https://github.com/AlanWalk/tsc-with-cleanup",
"repository": {
"type": "git",
"url": "https://github.com/AlanWalk/tsc-with-cleanup"
},
"bugs": {
"url": "https://github.com/AlanWalk/tsc-with-cleanup/issues"
},
"keywords": [
"typescript",
"ts",
"tsc",
"watch",
"clean",
"cleanup",
"cleaner"
],
"directories": {
"lib": "./dist"
},
"bin": {
"tsc-with-cleanup": "dist/bin.js"
},
"files": [
"LICENSE",
"README",
"dist/"
],
"dependencies": {
"chokidar": "^3.4.2",
"colors": "^1.4.0",
"commander": "^6.2.0",
"cross-spawn": "^7.0.3"
},
"devDependencies": {
"@types/chokidar": "^2.1.3",
"@types/colors": "^1.2.1",
"@types/commander": "^2.12.2",
"@types/cross-spawn": "^6.0.2",
"typescript": "^4.0.5"
}
}