-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.03 KB
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
{
"name": "@careevolution/fhir-diff",
"version": "1.0.7",
"type": "commonjs",
"types": "./src/index.d.ts",
"main": "./src/index.js",
"scripts": {
"test": "jest",
"build": "tsc && shx cp package.json dist/ && shx cp README.md dist/",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write .",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"publishConfig": {
"registry": "https://proget.careevolution.com/npm/npm/"
},
"description": "",
"dependencies": {
"@types/fhir": "^0.0.41"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@jest/globals": "^30.2.0",
"@types/node": "^25.0.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"shx": "^0.4.0",
"ts-jest": "^29.4.6",
"typescript-eslint": "^8.50.1"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}