-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.64 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
59
60
61
62
63
64
65
66
{
"name": "fhir-dosage-utils",
"version": "0.0.0-development",
"description": "Turn FHIR Dosage into human readable text in your wanted language (english, french, dutch, ...) and much more",
"files": [
"dist"
],
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/jy95/fhir-dosage-utils.git"
},
"homepage": "https://jy95.github.io/fhir-dosage-utils/",
"exports": {
".": {
"require": "./dist/main.js",
"import": "./dist/module.js",
"types": "./dist/types.d.ts"
}
},
"scripts": {
"watch": "npx parcel watch",
"build": "npx parcel build",
"postbuild": "node copyAssets.mjs",
"test": "npx jest",
"test:coverage": "npx jest --coverage",
"lint": "npx prettier --check .",
"lint-fix": "npx prettier --write .",
"prepare": "npm run build"
},
"author": "jy95",
"license": "AGPL-3.0-or-later",
"keywords": [
"healthcare",
"fhir",
"hl7",
"hl7-be",
"fhir-r4",
"fhir-r5",
"health",
"framework",
"fhir-parser",
"dosage",
"timing"
],
"devDependencies": {
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@types/fhir": "^0.0.41",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"parcel": "^2.12.0",
"prettier": "3.4.2",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3"
},
"peerDependencies": {
"i18next": "^23.10.1",
"i18next-chained-backend": "^4.6.2",
"i18next-resources-to-backend": "^1.2.0"
}
}