-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.22 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "ts-hl7",
"version": "1.0.0",
"description": "A TypeScript Client for HL7 messages",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.ts",
"disabled-scripts": {
"addscope": "node tools/packagejson name @amaster507/ts-hl7"
},
"scripts": {
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"clean": "node tools/cleanup",
"dev-test": "nodemon -x \"npm test\" -e ts,js,json",
"lint": "eslint",
"package": "npm run build && npm pack",
"postinstall": "husky install",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"keywords": [
"HL7",
"typescript",
"client",
"Healthcare",
"API",
"Interface"
],
"author": "Anthony Master <themaster5.07@gmail.com>",
"license": "Apache 2.0",
"homepage": "https://github.com/amaster507/ts-hl7",
"repository": {
"type": "git",
"url": "https://github.com/amaster507/ts-hl7"
},
"bugs": {
"url": "https://github.com/amaster507/ts-hl7/issues"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/jest": "^29.1.2",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.1.2",
"nodemon": "^2.0.20",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}