-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
{
"name": "@smals-jy/kmehr-tests",
"version": "0.0.0-development",
"description": "Comprehensive Testing Suite & tools for Belgian KMEHR Standards",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/types.d.ts",
"files": [
"dist/",
"src/",
"TEMPLATES/"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smals-jy/kmehr-tests.git"
},
"homepage": "https://smals-jy.github.io/KMEHR-tests/",
"scripts": {
"start": "npx tsx main.ts",
"watch": "parcel watch",
"build": "parcel build",
"generate-revoke-data": "npx tsx revokeDataGenerator.ts",
"generate-schemas": "node json-schema.mjs",
"prettier": "npx prettier --write **/*.{js,jsx,ts,tsx,json,mts}",
"test": "echo \"Error: no test specified\" && exit 0",
"init": "npx tsc --init",
"checkRules": "npx xslt3 \"-s:output/ms/TS-01-identifiers.xml\" \"-xsl:medicationscheme-validation-v2.xslt\" "
},
"author": "jy95",
"license": "MIT",
"dependencies": {
"@types/fhir": "^0.0.41",
"@types/lodash": "^4.17.15",
"fast-xml-parser": "^4.5.1",
"lodash": "^4.17.21",
"prettier": "^3.5.0",
"ts-json-schema-generator": "^2.1.0",
"typescript": "^5.7.3",
"uuid": "^11.0.5",
"xslt3": "^2.7.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.13.3",
"@parcel/transformer-typescript-types": "^2.13.3",
"@types/node": "^22.13.1",
"@types/uuid": "^10.0.0",
"parcel": "^2.13.3",
"semantic-release": "^24.2.2",
"tsx": "^4.19.2"
}
}