-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 920 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
{
"name": "@ahryman40k/ts-fhir-types",
"version": "4.0.38",
"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": "^27.4.0",
"@types/node": "^17.0.17",
"codecov": "^3.8.3",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"files": [
"lib"
],
"dependencies": {
"fp-ts": "^2.11.8",
"io-ts": "^2.2.16",
"reflect-metadata": "^0.1.13"
}
}