-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.23 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": "tyranoscript-packager",
"version": "0.3.4",
"description": "This is a CLI tool for packaging Typescript apps.",
"bin": {
"tyrano": "lib/index.js"
},
"scripts": {
"clean": "rimraf dest lib",
"watch": "tsc -w",
"build": "tsc",
"pretest": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuji44/tyranoscript-packager.git"
},
"keywords": [
"tyranoscript",
"cli",
"command"
],
"author": "fuji44",
"license": "MIT",
"bugs": {
"url": "https://github.com/fuji44/tyranoscript-packager/issues"
},
"homepage": "https://github.com/fuji44/tyranoscript-packager#readme",
"dependencies": {
"archiver": "^5.3.1",
"commander": "^9.4.1",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"tar": "^6.1.12",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/archiver": "^5.3.1",
"@types/jest": "^29.2.3",
"@types/mkdirp": "^1.0.2",
"@types/ncp": "^2.0.5",
"@types/node": "^18.11.9",
"@types/tar": "^6.1.3",
"jest": "^29.3.1",
"rimraf": "^3.0.2",
"tmp": "^0.2.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}