-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
52 lines (52 loc) · 1.5 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
{
"name": "dicomweb-client",
"version": "0.8.4",
"description": "Implementation of DICOMweb client code",
"main": "build/dicomweb-client.js",
"module": "build/dicomweb-client.es.js",
"types": "types/dicomweb-client.d.ts",
"scripts": {
"test": "./test_ci.sh",
"test:watch": "./test.sh",
"start": "rollup -c",
"build": "rollup -c && npx tsc",
"watch": "rollup -c -w",
"version": "node -p -e \"'export default \\'' + require('./package.json').version + '\\';'\" > src/version.js",
"lint": "eslint -c .eslintrc.js --fix src && prettier --write src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcmjs-org/dicomweb-client.git"
},
"keywords": [
"dicom",
"dcmjs",
"dicomweb",
"wado-rs",
"qido-rs",
"stow-rs"
],
"author": "Steve Pieper, Markus Herrmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcmjs-org/dicomweb-client/issues"
},
"homepage": "https://github.com/dcmjs-org/dicomweb-client#readme",
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"karma": "^6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-jasmine": "^5.1.0",
"prettier": "^1.19.1",
"puppeteer": "^1.18.1",
"rollup": "^0.63.2",
"rollup-plugin-babel": "^4.0.3",
"typescript": "^4.8.4"
}
}