forked from sourcegraph/scip-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.98 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
{
"name": "@sourcegraph/scip-typescript",
"version": "0.3.9",
"description": "SCIP indexer for TypeScript and JavaScript",
"publisher": "sourcegraph",
"bin": "dist/src/main.js",
"main": "./dist/src/main.js",
"scripts": {
"prettier": "prettier --write --list-different '**/*.{ts,js?(on),md,yml}'",
"prettier-check": "prettier --check '**/*.{ts,js?(on),md,yml}'",
"tslint": "tslint -p tsconfig.json --format stylish",
"eslint": "eslint --cache '**/*.ts?(x)'",
"build": "node ./node_modules/typescript/bin/tsc -b .",
"test": "uvu -r ts-node/register --ignore dist",
"update-snapshots": "uvu -r ts-node/register --ignore dist --update-snapshots",
"prepare": "node ./node_modules/typescript/bin/tsc -b ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/sourcegraph/scip-typescript.git"
},
"keywords": [
"scip",
"typescript",
"compiler",
"javascript",
"indexer"
],
"author": "Code Intelligence at Sourcegraph",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sourcegraph/scip-typescript/issues"
},
"homepage": "https://github.com/sourcegraph/scip-typescript#readme",
"dependencies": {
"commander": "^9.2.0",
"google-protobuf": "^3.20.1",
"pretty-ms": "^7.0.1",
"progress": "^2.0.3",
"typescript": "^5.1.6"
},
"devDependencies": {
"@sourcegraph/eslint-config": "0.33.0",
"@sourcegraph/prettierrc": "3.0.3",
"@sourcegraph/tsconfig": "4.0.1",
"@types/diff": "5.0.2",
"@types/google-protobuf": "3.15.6",
"@types/node": "17.0.14",
"@types/pretty-ms": "5.0.1",
"@types/progress": "2.0.5",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"diff": "^5.0.0",
"eslint": "^8.45.0",
"eslint-plugin-unicorn": "^21.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"pnpm": "7.20.0",
"prettier": "2.8.8",
"ts-node": "^10.7.0",
"typescript-eslint": "0.0.1-alpha.0",
"uvu": "^0.5.3"
}
}