forked from Ahryman40k/typescript-fhir-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·37 lines (37 loc) · 895 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
{
"name": "@ahryman40k/ts-fhir-types",
"version": "4.0.29",
"description": "",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest",
"clean": "rimraf lib/*",
"publish-me": "npm run clean && npm version patch && tsc -p . && npm publish",
"publish-coverage": "codecov --token=50ac9b8a-5b64-40a3-bac5-721272f90c71"
},
"repository": {
"type": "git",
"url": "[email protected]:Ahryman40k/typescript-fhir-types.git"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"codecov": "^3.7.0",
"jest": "^26.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
},
"files": [
"lib"
],
"dependencies": {
"io-ts": "<2.0.0",
"reflect-metadata": "^0.1.13"
}
}