-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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
{
"name": "@tangdrew/fhir-ts-codegen",
"version": "0.6.0",
"description": "Generate io-ts runtime types from FHIR StructureDefinitions.",
"publishConfig": {
"access": "public"
},
"bin": {
"fhir-ts-codegen": "./bin/index.js"
},
"files": [
"bin/index.js",
"dist/**"
],
"scripts": {
"build": "yarn clean && tsc -b tsconfig.json",
"clean": "rimraf dist && rm -f tsconfig.tsbuildinfo",
"coverage": "jest --coverage",
"download-structure-definitions": "ts-node scripts/download.ts",
"test": "jest"
},
"keywords": [
"fhir"
],
"author": "Andrew Tang <[email protected]>",
"license": "MIT",
"dependencies": {
"@tangdrew/primitives": "^0.5.0",
"commander": "^2.19.0",
"fp-ts": "^2.1.0",
"glob": "^7.1.3",
"io-ts": "^2.0.1",
"node-fetch": "^2.3.0",
"prettier": "^1.16.1"
},
"devDependencies": {
"@types/node-fetch": "^2.1.4",
"@types/prettier": "^1.15.2",
"rimraf": "^2.6.3",
"ts-node": "^8.0.2",
"typescript": "^3.3.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"collectCoverageFrom": [
"lib/**/*.{ts,tsx,js,json}"
]
}
}