-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "judgekit",
"version": "0.0.7-hotfix5",
"description": "various of toolCLI for code judge, exam, test, etc.",
"bin": {
"judgekit": "bin/index.js"
},
"scripts": {
"dev": "npm run build && node bin",
"testTest": "npm run build && cd .. && node judgekit/bin test judgekit/doc/examples/1000",
"testGenerate": "npm run build && cd .. && node judgekit/bin generate 234 -O doc/examples",
"typecheck": "tsc --noemit",
"build": "rm -rf bin && npm run typecheck && swc src -d bin",
"test": "jest"
},
"author": "sharlottes",
"license": "MIT",
"dependencies": {
"chalk": "4.0.0",
"commander": "^10.0.0",
"hjson": "^3.2.2",
"inquirer": "^8.2.5",
"inquirer-fuzzy-path": "^2.3.0",
"yaml": "^2.2.1"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.49",
"@swc/jest": "^0.2.24",
"@types/commander": "^2.12.2",
"@types/hjson": "latest",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.5.0",
"@types/node": "latest",
"jest": "^29.5.0",
"typescript": "latest"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/sharlottes/judgekit.git"
},
"homepage": "https://github.com/sharlottes/judgekit#readme",
"keywords": [
"typescript",
"node",
"judge",
"cli"
]
}