-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.08 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
{
"name": "his-js",
"version": "0.0.1",
"description": "Javascript/Typescript Client SDK for the Bulgarian National Health Information System",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"generate-schema": "ts-node scripts/schemaGenerator.ts",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alttreble/his-js.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/alttreble/his-js/issues"
},
"homepage": "https://github.com/alttreble/his-js#readme",
"devDependencies": {
"@types/jsdom": "^16.2.14",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"husky": "^7.0.4",
"jsdom": "^19.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"peerDependencies": {
"axios": "^0.27.2"
}
}