forked from dcmjs-org/dcmjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "dcmjs",
"version": "0.8.0",
"description": "Javascript implementation of DICOM manipulation",
"main": "build/dcmjs.js",
"module": "build/dcmje.es.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"build:examples": "npm run build && npx cpx 'build/**/*.{js,map}' examples/js",
"start": "rollup -c -w",
"prepublishOnly": "npm run build",
"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.6.4",
"@babel/preset-env": "^7.6.3",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"husky": "^1.3.1",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"rollup": "^1.25.2",
"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"
},
"dependencies": {
"@babel/polyfill": "^7.6.0",
"@babel/runtime": "^7.6.3",
"loglevelnext": "^3.0.1",
"ndarray": "^1.0.18"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --tab-width 4 --write",
"git add"
]
}
}