-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.35 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
{
"name": "@cmsgov/hpt-validator-cli",
"version": "1.10.4",
"author": "CMS Open Source <opensource@cms.hhs.gov>",
"license": "CC0-1.0",
"description": "CLI for validating CMS Hospital Price Transparency machine-readable files",
"type": "module",
"main": "./dist/index.js",
"bin": {
"cms-hpt-validator": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CMSgov/hpt-validator-cli.git"
},
"scripts": {
"build": "npx tsc && chmod +x ./dist/index.js",
"prepublish": "npx tsc && chmod +x ./dist/index.js",
"lint": "tsc && eslint \"**/*.{js,ts}\"",
"lint:fix": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"prettier": "prettier --check \"**/*.{js,ts}\"",
"prettier:fix": "prettier --write \"**/*.{js,ts}\"",
"cli": "node ./dist/index.js"
},
"dependencies": {
"@cmsgov/hpt-validator": "^2.2.0",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"semver": "^7.7.3"
},
"devDependencies": {
"@stylistic/eslint-plugin-js": "^2.9.0",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"esm": "^3.2.25",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.6.3"
}
}