-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
81 lines (81 loc) · 2.44 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
81
{
"name": "qpp-measures-data",
"version": "v8.5.0",
"description": "Quality Payment Program Measures Data Repository",
"repository": {
"type": "git",
"url": "https://github.com/CMSgov/qpp-measures-data.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=20.15",
"npm": ">=10.7"
},
"scripts": {
"build": "tsc",
"test": "npm run jest:cov",
"init:measures": "scripts/measures/initialize-measures",
"update:measures": "scripts/measures/update-measures",
"build:measures": "scripts/measures/build-measures",
"build:benchmarks:old": "scripts/benchmarks/archive/build-benchmarks",
"build:benchmarks": "scripts/benchmarks/build-benchmarks",
"build:clinical-clusters": "scripts/clinical-clusters/build-clinical-clusters",
"update:mvp": "scripts/mvp/update-mvp",
"parse:mvp": "scripts/mvp/parse-mvp-data",
"export:measures": "scripts/measures/export-measures",
"pretest": "npm run lint",
"lint": "eslint scripts index.spec.ts",
"lint:fix": "eslint scripts index.spec.ts --fix",
"pre-commit": "tools/pre-commit.sh",
"jest:cov": "TS_NODE_FILES=true NODE_OPTIONS='--max-old-space-size=3072' jest --coverage --coverage-provider=v8"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.0.3",
"@types/json-merge-patch": "^0.0.10",
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"adm-zip": "0.4.13",
"ajv": "^8.12.0",
"ajv-keywords": "^5.1.0",
"bluebird": "^3.7.2",
"csv-parse": "^5.3.10",
"eslint": "^8.57.0",
"fast-json-patch": "^3.1.1",
"globals": "^15.4.0",
"jest": "^29.7.0",
"json-2-csv": "^5.5.1",
"json-merge-patch": "^1.0.2",
"memfs": "^4.8.2",
"nyc": "^15.0.0",
"officeparser": "^4.0.8",
"pre-commit": "^1.2.2",
"rimraf": "2.6.1",
"toad-uri-js": "^5.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"typescript-eslint": "^7.13.0",
"xml2js": "0.5.0"
},
"dependencies": {
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.184",
"app-root-path": "^3.1.0",
"fs-extra": "^11.2.0",
"lodash": "^4.17.21",
"papaparse": "^5.4.1",
"xregexp": "^5.1.1",
"yaml": "^2.5.1"
},
"pre-commit": [
"pre-commit"
],
"eslintIgnore": [
"/dist/**/*.js"
]
}