-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.47 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
{
"name": "codetraverse-bridge-jp",
"version": "0.1.21",
"description": "CodeTraverse - Multi-language static code analysis tool with Node.js bridge",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build --workspace=bridge",
"test": "npm run test --workspace=bridge",
"lint": "npm run lint --workspace=bridge",
"clean": "npm run clean --workspace=bridge",
"bridge:build": "npm run build --workspace=bridge",
"bridge:test": "npm run test --workspace=bridge",
"bridge:publish": "npm publish",
"install:bridge": "npm install --workspace=bridge",
"dev:bridge": "npm run dev --workspace=bridge",
"prepublishOnly": "npm run build && rm -rf dist && ncp bridge/dist dist",
"postpublish": "rm -rf dist"
},
"files": [
"dist",
"codetraverse",
"scripts"
],
"workspaces": [
"bridge"
],
"keywords": [
"static-analysis",
"code-analysis",
"dependency-graph",
"tree-sitter",
"typescript",
"python",
"rust",
"go",
"haskell",
"rescript"
],
"author": "Juspay",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/juspay/codetraverse.git"
},
"bugs": {
"url": "https://github.com/juspay/codetraverse/issues"
},
"homepage": "https://github.com/juspay/codetraverse#readme",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"devDependencies": {
"@types/node": "^18.19.117",
"ncp": "^2.0.0"
}
}