-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 1.97 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 1.97 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "fhirformjs",
"description": "FHIR Questionnaire To Form Converter for rendering",
"version": "1.2.3",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": {
"name": "Bell Eapen",
"email": "gravatar@gulfdoctor.net",
"url": "https://nuchange.ca"
},
"repository": {
"type": "git",
"url": "https://github.com/dermatologist/fhirformjs.git"
},
"homepage": "https://github.com/dermatologist/fhirformjs",
"keywords": [
"fhir",
"json-schema",
"questionnaire",
"forms",
"ehealth"
],
"files": [
"dist"
],
"scripts": {
"analyze": "size-limit --why",
"build": "dts build",
"lint": "dts lint --fix",
"prepare": "dts build",
"size": "size-limit",
"start": "dts watch",
"test": "dts test --verbose --coverage",
"e2e": "dts test --verbose ./test/e2e --detectOpenHandles",
"docs": "typedoc --html docs src"
},
"husky": {
"hooks": {
"//": "pre-commit dts lint"
}
},
"jest": {
"testEnvironment": "node"
},
"engines": {
"node": ">=12"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"module": "dist/fhirformjs.esm.js",
"size-limit": [
{
"path": "dist/fhirformjs.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/fhirformjs.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^12.0.0",
"@tsconfig/recommended": "^1.0.3",
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.2",
"dts-cli": "^2.0.5",
"husky": "^9.1.7",
"jest-watch-typeahead": "^2.2.2",
"size-limit": "^12.0.0",
"supertest": "^7.1.1",
"ts-mockito": "^2.6.1",
"tslib": "^2.6.2",
"typedoc": "^0.28.5",
"typescript": "^5.3.3"
},
"dependencies": {
"@ahryman40k/ts-fhir-types": "^4.0.39",
"axios": "^1.9.0",
"ts-jest": "^29.3.4",
"uuidv4": "^6.2.13"
}
}