-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
41 lines (41 loc) · 1003 Bytes
/
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
{
"name": "dcmtk-node",
"version": "1.0.0",
"description": "Node wrapper for OFFIS DCMTK DICOM library",
"main": "index.js",
"scripts": {
"test": "jest --runInBand",
"postinstall": "node ./postinstall.js"
},
"jest": {
"testEnvironment": "node",
"transformIgnorePatterns": [
"<rootDir>/node_modules"
]
},
"engines": {
"node": ">8.0"
},
"repository": {
"type": "git",
"url": "git+https://bitbucket.org/hopkinsdeeplearning/dcmtk-node.git"
},
"author": "Jason Hostetter MD",
"license": "UNLICENSED",
"homepage": "https://bitbucket.org/hopkinsdeeplearning/dcmtk-node#readme",
"dependencies": {
"cross-spawn": "^6.0.5",
"merge-stream": "^1.0.1",
"rimraf": "^2.6.3",
"split2": "^3.1.0"
},
"devDependencies": {
"async": "^2.6.2",
"eslint": "^5.14.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"fs-extra": "^7.0.1",
"jest": "^24.1.0",
"ps-node": "^0.1.6"
}
}