-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.21 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.21 KB
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": "@sourcegraph/scip-python",
"version": "0.6.3",
"description": "SCIP indexer for Python",
"main": "index.js",
"scripts": {
"build": "webpack --mode production --progress",
"build-agent": "webpack --mode development",
"clean": "shx rm -rf ./dist ./out README.md LICENSE.txt",
"prepack": "npm run clean && shx cp ../../README.md . && shx cp ../../LICENSE.txt . && npm run build",
"check-snapshots": "npm run update-snapshots -- --check",
"update-snapshots": "node --enable-source-maps ./index-test.js",
"test": "jest --forceExit --detectOpenHandles",
"webpack": "webpack --mode development --progress",
"watch": "webpack --mode development --progress --watch",
"fix:prettier": "prettier --write --loglevel error .",
"check:prettier": "prettier --check ."
},
"author": "Sourcegraph",
"repository": {
"type": "git",
"url": "https://github.com/sourcegraph/scip-python",
"directory": "packages/pyright-scip/"
},
"license": "MIT",
"devDependencies": {
"@sourcegraph/eslint-config": "0.26.0",
"@sourcegraph/prettierrc": "3.0.3",
"@sourcegraph/tsconfig": "4.0.1",
"@types/command-exists": "^1.2.0",
"@types/diff": "^5.0.2",
"@types/glob": "^7.2.0",
"@types/google-protobuf": "^3.15.5",
"@types/jest": "^27.5.0",
"@types/ora": "^3.2.0",
"clean-terminal-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^10.2.0",
"jest": "^27.4.7",
"jest-junit": "^13.0.0",
"shx": "^0.3.3",
"ts-jest": "^27.1.3",
"ts-loader": "^9.2.6",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"command-exists": "^1.2.9",
"commander": "^9.2.0",
"diff": "^5.0.0",
"glob": "^7.2.0",
"google-protobuf": "^3.19.3",
"ts-node": "^10.5.0",
"vscode-languageserver": "^7.0.0"
},
"files": [
"/dist",
"LICENSE.txt"
],
"bin": {
"scip-python": "index.js"
}
}