forked from CMSgov/beneficiary-reporting-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.91 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
79
80
{
"name": "@cmsgov/wi-validation",
"version": "1.0.4",
"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": "./node_modules/typescript/bin/tsc",
"prepare": "rm -rf dist && npm run build"
},
"author": "Semantic Bits",
"contributors": [
"James Garrett <[email protected]>",
"Peter Schnabel <[email protected]>"
],
"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",
"email": "[email protected]"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/node": "^14.0.26",
"jest": "^26.1.0",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"class-transformer": "^0.3.1",
"class-validator": "^0.12.2",
"date-fns": "^2.16.1",
"reflect-metadata": "^0.1.13"
},
"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"
]
}
}