-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.6 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.6 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
77
78
79
80
81
82
83
{
"name": "qpp-measures-data",
"version": "v9.4.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": ">=22",
"npm": ">=10.7"
},
"scripts": {
"build": "tsc",
"test": "npm run jest:cov",
"posttest": "cp coverage/lcov.info lcov.info",
"init:measures": "scripts/measures/initialize-measures",
"update:measures": "scripts/measures/update-measures",
"build:measures": "scripts/measures/build-measures",
"build:benchmarks": "scripts/benchmarks/build-benchmarks",
"build:clinical-clusters": "scripts/clinical-clusters/build-clinical-clusters",
"build:mvp": "scripts/mvp/build-mvp",
"parse:mvp": "scripts/mvp/parse-mvp-data",
"export:measures": "bash scripts/measures/export-measures",
"manage:allowed-programs": "scripts/measures/manage-programs",
"export:data-dictionary": "ts-node scripts/data-dictionary/generate-data-dictionary.ts",
"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": "^10.0.1",
"@types/json-merge-patch": "^1.0.0",
"@types/natural-compare-lite": "^1.4.2",
"@types/node": "^25.0.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"adm-zip": "^0.5.17",
"ajv": "^8.12.0",
"ajv-keywords": "^5.1.0",
"bluebird": "^3.7.2",
"csv-parse": "^6.2.1",
"eslint": "^10.2.0",
"fast-json-patch": "^3.1.1",
"globals": "^17.4.0",
"jest": "^30.2.0",
"json-2-csv": "^5.5.1",
"json-merge-patch": "^1.0.2",
"memfs": "^4.8.2",
"natural-compare-lite": "^1.4.0",
"officeparser": "^6.0.7",
"pre-commit": "^1.2.2",
"rimraf": "^6.1.3",
"toad-uri-js": "^5.0.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"xml2js": "^0.6.2",
"commander": "^14.0.3"
},
"dependencies": {
"@types/fs-extra": "^11.0.4",
"@types/papaparse": "^5.5.1",
"@types/lodash": "^4.17.23",
"app-root-path": "^3.1.0",
"fs-extra": "^11.3.3",
"lodash": "^4.17.21",
"papaparse": "^5.5.3",
"yaml": "^2.8.2"
},
"pre-commit": [
"pre-commit"
],
"eslintIgnore": [
"/dist/**/*.js"
]
}