-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 953 Bytes
/
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
{
"name": "auto-judge",
"version": "0.0.10",
"description": "automatic compilation, execution, and I/O testing of online judge source code",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"auto-judge": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"dev": "ts-node ./lib/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/julyydev/auto-judge.git"
},
"keywords": [
"online",
"judge",
"boj"
],
"author": "julyydev",
"license": "ISC",
"bugs": {
"url": "https://github.com/julyydev/auto-judge/issues"
},
"homepage": "https://github.com/julyydev/auto-judge#readme",
"devDependencies": {
"@types/node": "^20.4.8",
"@types/yargs": "^17.0.24",
"typescript": "^5.1.6"
},
"dependencies": {
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.12",
"ora": "^5.4.1",
"yargs": "^17.7.2"
}
}