forked from xjtu-enre/ENRE-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 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
64
65
{
"name": "enre-ts",
"version": "0.0.1",
"description": "ENtity Relationship Extractor (ENRE) for modern JavaScript/TypeScript",
"private": true,
"scripts": {
"clean": "tsc -b --clean",
"build": "tsc -b",
"build:watch": "tsc -b -w",
"start": "npm run build && cross-env NODE_ENV=development node --experimental-specifier-resolution=node ./packages/enre-cli/lib",
"pretest": "npm run build && cross-env NODE_ENV=development && node --experimental-specifier-resolution=node ./packages/enre-test-generator/lib/cli.js -e",
"test": "jest tests/suites",
"bundle:core": "webpack --mode production --env profile=core",
"bundle:core:node_18_win_x64": "npm run bundle:core && pkg -t node18-win-x64 ./lib/enre-ts.js --out-path ./lib"
},
"keywords": [
"JavaScript",
"TypeScript",
"Code Analysis",
"Static Analysis",
"Dependency Extractor"
],
"author": {
"name": "ThisRabbit",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.18.6",
"@babel/core": "^7.18.6",
"@babel/generator": "^7.18.7",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/template": "^7.18.6",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"ajv": "^8.11.0",
"babel-jest": "^28.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.18.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.1",
"marked": "^4.0.17",
"pkg": "^5.8.0",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"yaml": "^2.1.1"
},
"dependencies": {
"@babel/parser": "^7.18.6",
"@babel/polyfill": "^7.12.1",
"@babel/traverse": "^7.18.6",
"@babel/types": "^7.18.7",
"chalk": "^5.0.1",
"commander": "^9.3.0",
"fast-xml-parser": "^4.0.8",
"node-worker-threads-pool": "^1.5.1"
},
"workspaces": [
"packages/*"
]
}