-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.06 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
{
"name": "jvm-ts",
"private": true,
"version": "0.1.0",
"engines": {
"node": ">=10"
},
"bin": {
"tsjava": "./dist/index.js",
"classviewer": "./dist/tools/classViewer.js"
},
"scripts": {
"dev": "node -r ts-node/register src/index.ts",
"test": "mocha -r ts-node/register src/**/*.spec.ts",
"watch-test": "nodemon --watch src --ext ts --exec npm test",
"build": "del dist && tsc",
"prepare": "npm run build"
},
"dependencies": {
"adm-zip": "^0.5.3",
"glob": "^7.1.6",
"prompt": "^1.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/adm-zip": "^0.4.33",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.16",
"@types/prompt": "^1.1.0",
"@types/yargs": "^15.0.12",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"chai": "^4.2.0",
"cpy-cli": "^3.1.1",
"del-cli": "^3.0.1",
"eslint": "^7.16.0",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}