forked from dcmjs-org/dcmjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.8 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
{
"name": "dcmjs",
"version": "0.30.0",
"description": "Javascript implementation of DICOM manipulation",
"main": "build/dcmjs.js",
"module": "build/dcmjs.es.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "jest --testTimeout 60000 .",
"build": "rollup -c",
"build:examples": "npm run build && npx cpx 'build/**/*.{js,map}' examples/js",
"start": "rollup -c -w",
"format": "prettier --write 'src/**/*.js' 'test/**/*.js'",
"lint": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dcmjs-org/dcmjs.git"
},
"author": "Steve Pieper",
"license": "MIT",
"bugs": {
"url": "https://github.com/dcmjs-org/dcmjs/issues"
},
"homepage": "https://github.com/dcmjs-org/dcmjs#readme",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.22.5",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.13.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"acorn": "^7.1.0",
"acorn-jsx": "^5.2.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"follow-redirects": "^1.10.0",
"husky": "^1.3.1",
"jest": "^27.5.1",
"lint-staged": "^13.1.2",
"prettier": "^2.6.2",
"rollup": "^3.25.1",
"xml2js": "^0.4.23"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.22.5",
"adm-zip": "^0.5.10",
"gl-matrix": "^3.1.0",
"lodash.clonedeep": "^4.5.0",
"loglevelnext": "^3.0.1",
"ndarray": "^1.0.19",
"pako": "^2.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --write",
"git add"
]
}
}