-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.06 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
{
"name": "medcalc",
"version": "0.9.1",
"description": "medical calculators",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"clean": "rm -rf lib",
"watch": "tsc -w",
"lint": "eslint ./src/*.ts",
"test": "jest"
},
"keywords": [
"BMI",
"Calorie",
"SOFA",
"SAPS2",
"CKD-EPI",
"GRACE",
"HAS-BLED",
"CHA2DS2-VASc",
"Precise DAPT",
"SCORE",
"NEWS2"
],
"author": "Pavel Ishenin",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.17.0",
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/eslint": "^8.2.0",
"@types/jest": "^27.4.0",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"babel-jest": "^28.0.3",
"eslint": "^8.3.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.0.3",
"typescript": "^4.5.2"
}
}