forked from stevenbitner/autograding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.04 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
{
"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.0",
"@actions/github": "^5.1.1",
"tree-kill": "^1.2.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^20.17.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.1",
"nock": "^13.2.9",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}