-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
78 lines (78 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@cs-au-dk/jelly",
"version": "0.10.0",
"description": "Jelly - call graph and library usage analyzer for JavaScript",
"author": "Anders Møller <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cs-au-dk/jelly.git"
},
"engines": {
"node": ">=20.0.0"
},
"homepage": "https://github.com/cs-au-dk/jelly#readme",
"keywords": [
"call graph",
"library usage",
"static analysis",
"program analysis"
],
"files": [
"lib",
"bin",
"resources"
],
"bin": {
"jelly": "lib/main.js",
"jelly-server": "lib/server.js"
},
"scripts": {
"build": "npm run chmod; tsc --build tsconfig-build.json",
"build-watch": "npm run chmod; tsc --build tsconfig-build.json -w",
"start": "node lib/main.js",
"chmod": "mkdir -p lib; touch lib/main.js lib/server.js; chmod +x lib/main.js lib/server.js",
"tests-install": "tests/install.sh",
"test": "jest --selectProjects default",
"differential": "jest --selectProjects differential",
"pkg": "npm run clean; npm run build; pkg lib/main.js -C Brotli --options \"expose-gc,max-old-space-size=8192\" -c package.json -o dist/jelly; pkg lib/server.js -C Brotli --options \"expose-gc,max-old-space-size=8192\" -c package.json -o dist/jelly-server",
"clean": "rm -rf lib dist tmp/tsbuildinfo tmp/coverage tests/node_modules/jelly-previous",
"build-docker": "npm run build && docker build -t jelly .",
"jelly-docker": "./bin/jelly-docker"
},
"dependencies": {
"@babel/core": "^7.24.8",
"@babel/parser": "^7.24.8",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-transform-template-literals": "^7.24.7",
"@babel/plugin-transform-typescript": "^7.24.8",
"@babel/traverse": "^7.24.8",
"@babel/types": "^7.24.8",
"commander": "^9.5.0",
"micromatch": "^4.0.7",
"semver": "^7.6.2",
"stringify2stream": "^1.1.0",
"typescript": "^5.5.3",
"winston": "^3.13.1"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.20.6",
"@types/jest": "^29.5.12",
"@types/micromatch": "^4.0.9",
"@types/node": "^20.14.10",
"@types/semver": "^7.5.8",
"jest": "^29.7.0",
"jest-expect-message": "^1.1.3",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2"
},
"pkg": {
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64"
],
"assets": "resources/**"
}
}