forked from you06/autograding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
{
"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.2.2",
"@actions/github": "^2.1.1",
"tree-kill": "^1.2.2",
"uuid": "^7.0.1"
},
"devDependencies": {
"@types/jest": "^25.1.1",
"@types/nock": "^11.1.0",
"@types/node": "^13.5.3",
"@types/uuid": "^7.0.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"@zeit/ncc": "^0.21.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"nock": "^11.7.2",
"prettier": "^1.19.1",
"ts-jest": "^25.1.0",
"typescript": "^3.7.5"
}
}