forked from openradx/dicom-anonymizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.23 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
{
"name": "dicom-anonymizer",
"version": "0.0.1",
"description": "A DICOM pseudonymization library in JavaScript.",
"main": "index.js",
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"clean": "rm -rf ./dist ./.tsbuildinfo",
"tsc": "tsc",
"test": "vitest run",
"test:watch": "vitest watch",
"lint": "eslint ./src --ext .js,.ts",
"ci": "npm run lint && npm run build && npm run tsc && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/radexperts/dicom-anonymizer.git"
},
"keywords": [
"DICOM",
"De-identification",
"Pseudonymization",
"Radiology"
],
"author": "Luca Dulz",
"license": "MIT",
"bugs": {
"url": "https://github.com/radexperts/dicom-anonymizer/issues"
},
"homepage": "https://github.com/radexperts/dicom-anonymizer#readme",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.6",
"tsup": "^6.7.0",
"typescript": "^5.0.2",
"vitest": "^0.29.7"
},
"dependencies": {
"dcmjs": "^0.29.5"
}
}