-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
56 lines (56 loc) · 1.45 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
{
"name": "@clangd/install",
"version": "0.1.18",
"description": "Installing clangd binaries from editor plugins.",
"main": "out/src/index.js",
"files": [
"out/src/index.d.ts"
],
"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": "tsc -p ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/clangd/node-clangd.git"
},
"keywords": [
"clangd",
"coc",
"vscode"
],
"license": "Apache-2.0 WITH LLVM-exception",
"bugs": {
"url": "https://github.com/clangd/node-clangd/issues"
},
"dependencies": {
"abort-controller": "^3.0.0",
"adm-zip": "^0.5.10",
"node-fetch": "^2.6.0",
"readdirp": "^3.4.0",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"which": "^2.0.2"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@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/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",
"typescript": "^3.8.3"
}
}