This repository was archived by the owner on Aug 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.73 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.73 KB
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
{
"name": "@cmsgov/wi-validation",
"version": "1.2.9",
"description": "CMS Web Interface Client and API Validation",
"keywords": [
"validation",
"api",
"client"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"build": "npx tsc",
"prepare": "rm -rf dist && npm run build"
},
"author": "Semantic Bits",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/CMSgov/beneficiary-reporting-validation.git"
},
"homepage": "https://github.com/CMSgov/beneficiary-reporting-validation",
"bugs": {
"url": "https://github.com/CMSgov/beneficiary-reporting-validation/issues"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.0.26",
"jest": "^26.6.3",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.7.4"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"date-fns": "^2.28.0",
"reflect-metadata": "^0.2.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?|ts?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"collectCoverageFrom": [
"<rootDir>/lib/**/*.ts",
"!<rootDir>/node_modules/",
"!<rootDir>/test/**/*.ts"
],
"coveragePathIgnorePatterns": [
"lib/schema/index.ts"
],
"coverageThreshold": {
"global": {
"branches": 96.4,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"coverageReporters": [
"text-summary",
"html"
]
}
}