forked from kythe/kythe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 988 Bytes
/
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
{
"name": "kythe-typescript-indexer",
"bin": "./indexer.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"browse": "node indexer.js tsconfig.json | ./browse",
"test": "bazel test //kythe/typescript:indexer_test",
"unit_test": "bazel test //kythe/typescript:utf8_test",
"fmt": "clang-format -i *.ts"
},
"dependencies": {
"balanced-match": "^3.0.1",
"brace-expansion": "^3.0.0",
"fs.realpath": "^1.0.0",
"glob": "^10.3.10",
"inflight": "^1.0.6",
"inherits": "^2.0.4",
"jasmine-reporters": "^2.5.2",
"minimatch": "^9.0.3",
"once": "^1.4.0",
"source-map": "^0.7.4",
"source-map-support": "^0.5.21",
"typescript": "5.3.2",
"wrappy": "^1.0.2"
},
"devDependencies": {
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@types/jasmine": "^5.1.0",
"@types/node": "^20.8.5",
"jasmine": "^5.1.0",
"jasmine-core": "^5.1.1"
},
"license": "Apache-2.0"
}