-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "tag-checker",
"version": "1.0.0",
"description": "This is an exercise, check the tags in a paragraph are correct or not.",
"main": "index.js",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"test": "jest",
"lint": "eslint --ext .ts src/ test/",
"start": "ts-node src/index.ts"
},
"keywords": [],
"author": "Yuchun Yang",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^10.17.60",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"jest": "^27.2.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"jest": {
"verbose": true,
"roots": [
"<rootDir>/test/src"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"forceExit": true,
"testEnvironment": "node",
"coverageDirectory": "test-reports",
"collectCoverage": true
}
}