-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 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
{
"name": "tyty",
"version": "3.5.2",
"description": ":star2: A cli tool to get all of `@types/*` for your project dependencies. Happier with `typescript` :heart:",
"main": "./dist/src/tyty.js",
"scripts": {
"start": "node ./dist/src/tyty.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"tyty": "./dist/src/tyty.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bin-Huang/tyty.git"
},
"keywords": [
"types",
"typescript",
"cli",
"tool"
],
"author": "Ben ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bin-Huang/tyty/issues"
},
"homepage": "https://github.com/Bin-Huang/tyty#readme",
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.14.0",
"execa": "^0.9.0",
"fs-extra": "^5.0.0",
"ora": "^2.0.0",
"p-map": "^1.2.0"
},
"devDependencies": {
"@types/chalk": "2.2.0",
"@types/commander": "2.12.2",
"@types/execa": "0.9.0",
"@types/fs-extra": "5.0.2",
"@types/ora": "1.3.4",
"@types/p-map": "1.1.0"
}
}