-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.88 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "typescript-practice",
"version": "0.2.0",
"description": "Typescript Practice.",
"type": "module",
"scripts": {
"test:jest": "node --no-warnings --experimental-vm-modules --experimental-specifier-resolution=node node_modules/jest/bin/jest.js",
"test": "node --no-warnings --experimental-vm-modules --experimental-specifier-resolution=node node_modules/jest/bin/jest.js --verbose --setTimeout=10000",
"coverage:ci": "node --no-warnings --experimental-vm-modules --experimental-specifier-resolution=node node_modules/jest/bin/jest.js --coverage --ci --reporters=default --reporters=jest-junit",
"start": "lcp typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yi-ge/typescript-practice.git"
},
"keywords": [
"arithmetic",
"typescript",
"practice"
],
"author": "yi-ge <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yi-ge/typescript-practice/issues"
},
"homepage": "https://github.com/yi-ge/typescript-practice#readme",
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"jest": "^29.0.3",
"jest-junit": "^14.0.1",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=18.2.0"
},
"wallaby": {
"autoDetect": true,
"env": {
"params": {
"runner": "--experimental-vm-modules --experimental-specifier-resolution=node"
}
},
"trace": true
},
"jest": {
"testEnvironment": "node",
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+.tsx?$": [
"ts-jest",
{
"useESM": true,
"isolatedModules": true
}
]
},
"reporters": [
"default",
"jest-junit"
]
},
"dependencies": {
"leetcode-test-helper": "^0.4.8"
}
}