-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.01 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
{
"name": "@tangdrew/primitives",
"version": "0.5.0",
"description": "FHIR primitive runtime types.",
"keywords": [
"fhir"
],
"author": "Andrew Tang <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && tsc",
"clean": "rimraf dist && rm -f tsconfig.tsbuildinfo",
"coverage": "jest --coverage",
"test": "jest"
},
"devDependencies": {
"@types/big.js": "^4.0.5",
"rimraf": "^2.6.3",
"typescript": "^3.3.3"
},
"dependencies": {
"big.js": "^5.2.2",
"fp-ts": "^2.0.5",
"io-ts": "^2.0.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "test/.*.test.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"collectCoverageFrom": [
"src/*"
]
}
}