forked from body-builder/typescript-cp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.25 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
{
"name": "typescript-cp",
"version": "0.1.6",
"description": "Copy non-typescript files to outDir",
"homepage": "https://github.com/body-builder/typescript-cp#readme",
"repository": "https://github.com/body-builder/typescript-cp",
"bugs": {
"url": "https://github.com/body-builder/typescript-cp/issues"
},
"keywords": [
"typescript",
"ts",
"file",
"asset",
"copy",
"watch",
"watcher",
"watchfile",
"fs"
],
"bin": {
"tscp": "./dist/bin/tscp.js"
},
"scripts": {
"start": "tsc -w",
"build": "tsc",
"clean": "git clean -Xdf --exclude=!node_modules --exclude=!.idea --exclude !.idea/workspace.xml",
"release": "standard-version --sign",
"prepack": "npm run clean && npm run build"
},
"author": "Benedek Káldi",
"license": "ISC",
"dependencies": {
"chokidar": "^3.5.1",
"commander": "^8.1.0",
"cosmiconfig": "^7.0.0",
"fs-extra": "^10.0.0",
"globby": "^11.0.3",
"lodash": "^4.17.21",
"pify": "^5.0.0",
"rimraf": "^3.0.2",
"tar": "^6.1.0"
},
"peerDependencies": {
"typescript": "^4.2.3"
},
"devDependencies": {
"@types/node": "^16.7.1",
"@types/rimraf": "^3.0.0",
"standard-version": "^9.3.1",
"typescript": "^4.2.3"
}
}