-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.28 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
{
"name": "reportstream-mars-lib",
"version": "2.0.0",
"description": "MARS Library for submitting lab results to ReportStream",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/NIBIB/reportstream-mars-lib"
},
"bugs": {
"url": "https://github.com/NIBIB/reportstream-mars-lib/issues"
},
"keywords": [
"RADx",
"MARS Hub",
"CDC",
"ReportStream"
],
"author": {
"name": "Andy Meadows",
"organization": "Meadows Design, LLC",
"url": "https://meadowsdesign.com"
},
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"jsrsasign": "^11.1.0",
"nanoid": "3.3.7",
"radx-mars-lib": "^2.3.0"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/jsrsasign": "^10.5.12",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"eslint": "^8.53.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.4.0",
"typescript": "^5.2.2"
}
}