forked from dcmjs-org/dcmjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.84 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.11.0",
"description": "Javascript implementation of DICOM manipulation",
"main": "build/dcmjs.js",
"module": "build/dcmjs.es.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "node test/tests.js",
"build": "rollup -c",
"build:examples": "npm run build && npx cpx 'build/**/*.{js,map}' examples/js",
"start": "rollup -c -w",
"lint": "eslint -c .eslintrc.json --fix src && prettier --tab-width 4 --write src/**/*.js"
},
"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.8.4",
"@babel/preset-env": "^7.8.4",
"@babel/register": "^7.13.0",
"acorn": "^7.1.0",
"acorn-jsx": "^5.2.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"follow-redirects": "^1.10.0",
"husky": "^1.3.1",
"lint-staged": "^8.2.1",
"prettier": "^1.19.1",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.2.4",
"unzipper": "^0.10.9",
"xml2js": "^0.4.23"
},
"dependencies": {
"@babel/polyfill": "^7.8.3",
"@babel/runtime": "^7.8.4",
"gl-matrix": "^3.1.0",
"lodash.clonedeep": "^4.5.0",
"loglevelnext": "^3.0.1",
"ndarray": "^1.0.19"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --tab-width 4 --write",
"git add"
]
}
}