-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
44 lines (44 loc) · 921 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
42
43
44
{
"name": "grader",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "cross-env TIMEOUT=2000 jest --env=node",
"test-coveralls": "scripts/ci.sh"
},
"dependencies": {
"fast-levenshtein": "^3.0.0",
"js-slang": "^1.0.76",
"lodash": "4.17.21",
"node-canvas-webgl": "^0.2.6"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^22.8.6",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"cross-zip-cli": "^1.0.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"typescript": "^5.6.3"
},
"resolutions": {
"**/gl": "^6.0.2"
},
"jest": {
"collectCoverageFrom": [
"src/index.ts"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "ts-jest"
},
"testRegex": "/__tests__/test.*\\.ts$"
}
}