This repository has been archived by the owner on Dec 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.65 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "tsc --build packages",
"watch": "tsc --build packages --watch",
"quality:lint": "tslint --project ./packages/tsconfig.lint.json --config ./packages/tslint.json",
"test": "jest --no-cache --verbose",
"test:coverage": "jest --no-cache --coverage",
"test:watch": "jest --watch --no-cache --verbose"
},
"jest": {
"collectCoverageFrom": [
"packages/*/src/**/*.ts",
"!packages/*/src/**/index.ts"
],
"globals": {
"ts-jest": {
"diagnostics": true,
"tsConfig": "<rootDir>/packages/tsconfig.test.json"
}
},
"moduleDirectories": [
"node_modules",
"src"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"moduleNameMapper": {
"@es-validation/(.+)": "<rootDir>/node_modules/@es-validation/$1/src/index.ts"
},
"roots": [
"<rootDir>/packages"
],
"setupFiles": [
"jest-date-mock"
],
"testEnvironment": "node",
"testResultsProcessor": "<rootDir>/node_modules/jest-junit-reporter",
"testRegex": "\\.spec\\.ts",
"transform": {
"^.+\\.ts$": "ts-jest"
}
},
"devDependencies": {
"@types/jest": "24.0.13",
"babel-core": "6.26.3",
"babel-jest": "23.6.0",
"codecov": "3.4.0",
"jest": "23.6.0",
"jest-create-mock-instance": "1.1.0",
"jest-date-mock": "1.0.7",
"jest-junit-reporter": "1.1.0",
"lerna": "3.13.4",
"reflect-metadata": "0.1.12",
"ts-jest": "24.0.1",
"ts-node": "8.1.0",
"tslint": "5.11.0",
"typescript": "3.0.3"
}
}