-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
40 lines (40 loc) · 951 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
{
"name": "@tangdrew/fhir-types",
"version": "0.4.0",
"description": "Runtime types for FHIR using io-ts.",
"keywords": [
"FHIR"
],
"author": "Andrew Tang <[email protected]>",
"homepage": "https://github.com/tangdrew/fhir-ts#readme",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tangdrew/fhir-ts.git"
},
"scripts": {
"build": "yarn clean && tsc -b tsconfig.json",
"clean": "rimraf dist && rm -f tsconfig.tsbuildinfo"
},
"bugs": {
"url": "https://github.com/tangdrew/fhir-ts/issues"
},
"dependencies": {
"@tangdrew/primitives": "^0.5.0",
"fp-ts": "^2.0.5",
"io-ts": "^2.0.1"
},
"devDependencies": {
"@tangdrew/fhir-ts-codegen": "^0.6.0",
"rimraf": "^2.6.3",
"typescript": "^3.3.3"
}
}