-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 KB
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": "autograding",
"version": "1.0.0",
"description": "A set of actions for autograding assignments with GitHub Classroom",
"main": "dist/index.js",
"scripts": {
"build": "tsc --noEmit && ncc build src/autograding.ts -o dist",
"test": "tsc --noEmit && jest",
"lint": "eslint . --ext .ts"
},
"keywords": [
"github",
"education",
"classroom",
"autograding"
],
"author": "GitHub",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"tree-kill": "^1.2.2",
"uuid": "^10.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.1",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.1",
"@types/uuid": "^10.0.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"nock": "^13.5.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0"
}
}