-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 991 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 991 Bytes
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
{
"name": "at-types",
"version": "0.0.2",
"description": "automatically install all @types/* from project's package.json.",
"keywords": [
"@types",
"cli",
"install",
"tsd",
"typescript",
"typings"
],
"homepage": "https://github.com/slivcode/at-types#readme",
"bugs": {
"url": "https://github.com/slivcode/at-types/issues"
},
"license": "MIT",
"author": "sliv <sliv.mbp@gmail.com>",
"main": "index.js",
"bin": {
"at-types": "lib/main/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slivcode/at-types.git"
},
"scripts": {
"build": "tsc && chmod +x lib/main/cli.js",
"clean": "rm -rf lib",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@types/node": "^7.0.13",
"@types/ramda": "^0.0.7",
"got": "^6.7.1",
"ramda": "^0.23.0",
"read-pkg-up": "^2.0.0",
"vorpal": "^1.12.0"
},
"devDependencies": {
"typescript": "^2.2.2"
}
}