-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.82 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.82 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
{
"name": "cms-mrf-validator",
"version": "2.2.0",
"description": "Node-based entry point for machine-readable file validator",
"main": "out/index.js",
"bin": {
"cms-mrf-validator": "out/index.js"
},
"files": [
"out/**/*.js"
],
"scripts": {
"build": "del-cli out && tsc",
"lint": "eslint \"**/*.{js,ts}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"src/*.ts\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"prepare": "npm run build",
"test": "node --expose-gc ./node_modules/jest/bin/jest --runInBand --logHeapUsage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CMSgov/price-transparency-guide-validator.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CMSgov/price-transparency-guide-validator/issues"
},
"homepage": "https://github.com/CMSgov/price-transparency-guide-validator#readme",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.13",
"@types/node": "^20.16.5",
"@types/readline-sync": "^1.4.8",
"@types/temp": "^0.9.4",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"@types/yauzl": "^2.10.3",
"del-cli": "^5.1.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"nock": "^13.5.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "^5.6.0"
},
"dependencies": {
"@streamparser/json": "^0.0.21",
"@streamparser/json-node": "^0.0.21",
"axios": "^1.2.1",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"readline-sync": "^1.4.10",
"temp": "^0.9.4",
"winston": "^3.14.2",
"yauzl": "^3.1.3"
}
}