-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 993 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "fhir-extension-helpers",
"version": "0.3.0",
"description": "FHIR Extension helper methods",
"main": "dist/extensions.js",
"files": [
"readme.md",
"LICENSE",
"dist/extensions.js",
"dist/extensions.js.map",
"dist/extensions.d.ts",
"dist/extensions.d.ts.map"
],
"scripts": {
"build": "tsc",
"build-watch": "tsc --watch",
"test": "jest",
"test-watch": "jest --watchAll"
},
"keywords": [
"fhir",
"extensions"
],
"author": "Brian Postlethwaite",
"license": "BSD-3-Clause",
"bugs": "https://github.com/brianpos/fhir-extension-helpers/issues",
"repository": "github:brianpos/fhir-extension-helpers",
"devDependencies": {
"@types/fhir": "^0.0.34",
"@types/jest": "^27.4.0",
"jest": "^27.4.7",
"typescript": "^4.5.5"
},
"dependencies": {},
"jest": {
"moduleDirectories": [
"dist",
"dist/test",
"node_modules"
],
"moduleFileExtensions": [
"js"
]
}
}