forked from clangd/node-clangd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "install-from-gh-to-vscode",
"version": "0.1.0-beta.9",
"description": "Lib for VS Code extensions installing executables from GitHub",
"main": "out/src/index.js",
"types": "out/src/index.d.ts",
"files": [
"out"
],
"keywords": [
"download",
"github",
"vscode"
],
"author": "dankeboy36",
"license": "Apache-2.0 WITH LLVM-exception",
"bugs": {
"url": "https://github.com/dankeboy36/install-from-gh-to-vscode/issues"
},
"homepage": "https://github.com/dankeboy36/install-from-gh-to-vscode#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/dankeboy36/install-from-gh-to-vscode.git"
},
"scripts": {
"compile": "tsc -watch -p ./",
"test": "tsc -p ./ && tape -r source-map-support/register 'out/test/**/*.js' | tap-spec",
"format": "clang-format -i --glob=\"{src,test}/**/*.ts\"",
"git-clang-format": "git-clang-format",
"prepare": "npm run test && npm run format && tsc -p ./",
"example": "ts-node ./src/example/index.ts"
},
"dependencies": {
"abort-controller": "^3.0.0",
"decompress": "^4.2.1",
"decompress-targz": "^4.1.1",
"decompress-unzip": "^4.0.1",
"node-fetch": "^2.6.0",
"readdirp": "^3.4.0",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"which": "^2.0.2"
},
"devDependencies": {
"@types/decompress": "^4.2.4",
"@types/node": "^13.13.4",
"@types/node-fetch": "^2.5.7",
"@types/node-static": "^0.7.3",
"@types/rimraf": "^3.0.0",
"@types/semver": "^7.1.0",
"@types/tape": "^4.13.0",
"@types/tmp": "^0.2.0",
"@types/unzipper": "^0.10.3",
"@types/vscode": "^1.65.0",
"@types/which": "^1.3.2",
"clang-format": "^1.4.0",
"node-static": "^0.7.11",
"source-map-support": "^0.5.19",
"tap-spec": "^5.0.0",
"tape": "^5.0.0",
"tmp-promise": "^2.1.0",
"ts-node": "^10.9.1",
"typescript": "^3.8.3"
}
}