-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "hpt-validator",
"version": "1.9.3",
"author": "CMS Open Source <[email protected]>",
"license": "CC0-1.0",
"description": "Validation library for CMS Hospital Price Transparency machine-readable files",
"type": "module",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.js"
},
"./lib/*": "./lib/*.js",
"./src/*": "./src/*.ts"
},
"scripts": {
"build": "tsc",
"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}\"",
"test": "ava",
"prepublish": "tsc"
},
"dependencies": {
"@streamparser/json": "^0.0.21",
"@types/node": "^20.16.5",
"@types/papaparse": "^5.3.14",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"papaparse": "^5.4.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"ava": "^6.1.3",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"esm": "^3.2.25",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.0"
},
"ava": {
"files": [
"test/**/*.spec.*"
],
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm",
"--experimental-specifier-resolution=node"
]
}
}