-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1 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
44
45
46
{
"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"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610",
"dependencies": {
"fast-levenshtein": "^3.0.0",
"js-slang": "^1.0.88",
"lodash": "4.18.1",
"node-canvas-webgl": "^0.3.0"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^25.5.0",
"coveralls": "^3.1.1",
"cross-env": "^10.1.0",
"cross-zip-cli": "^1.0.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"typescript": "^6.0.2"
},
"resolutions": {
"canvas": "^3.1.2",
"gl": "^8.0.2"
},
"jest": {
"collectCoverageFrom": [
"src/index.ts"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "ts-jest"
},
"testRegex": "/__tests__/test.*\\.ts$"
}
}