-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1010 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
{
"name": "try_jest_of_console",
"version": "0.2.3",
"description": "",
"scripts": {
"setup": "npm ci",
"test": "jest --watchAll",
"clean": "powershell rm -r -fo node_modules"
},
"author": "",
"license": "ISC",
"private": false,
"dependencies": {
"@types/commander": "^2.12.2",
"clipboardy": "^2.3.0",
"commander": "^7.2.0",
"globby": "^11.0.4"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^15.14.9",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.4.3"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"maxWorkers": 1
}
}