forked from NIBIB/reportstream-mars-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·34 lines (34 loc) · 975 Bytes
/
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
{
"name": "reportstream-mars-lib",
"version": "1.0.0",
"description": "MARS Library for submitting lab results to ReportStream",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"axios": "^0.21.1",
"jsrsasign": "^10.9.0",
"nanoid": "3.3.7",
"radx-mars-lib": "git+https://github.com/NIBIB/radx-mars-lib.git#main"
},
"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"
}
}