-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.69 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
73
74
75
76
77
78
{
"name": "mimms-poc2",
"description": "",
"version": "1.0.0",
"author": "albasim",
"main": "dist/index.js",
"private": true,
"scripts": {
"clean": "rimraf dist && tsc",
"build": "tsc",
"test": "jest",
"lint": "eslint 'gameModel' --ext '.ts'",
"format": "prettier --write gameModel/**/*.[tj]s",
"checkFormat": "prettier --check 'gameModel/**/*.[tj]s'"
},
"devDependencies": {
"@types/lodash": "^4.14.174",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-plugin-import": "^2.26.0",
"jest": "^27.2.2",
"jest-html-reporter": "^3.4.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.5",
"ts-unused-exports": "^8.0.0",
"typescript": "^4.4.3"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!**/node_modules/**"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"testPathIgnorePatterns": [
"/fixtures/",
"/main/"
],
"moduleFileExtensions": [
"js",
"ts",
"tsx",
"json",
"node"
],
"moduleNameMapper": {
"lodash-es": "lodash"
},
"reporters": [
"default",
[
"jest-html-reporter",
{
"pageTitle": "Test Report",
"outputPath": "test-report/index.html"
}
]
],
"globals": {
"ts-jest": {
"babelConfig": false,
"diagnostics": {
"ignoreCodes": [
151001
]
}
}
}
},
"dependencies": {
"lodash": "^4.17.21"
}
}