-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"author": "Juergen Gmeiner",
"name": "dicom",
"description": "DICOM for node-js",
"keywords": [
"DICOM"
],
"license": "MIT",
"version": "0.4.4",
"repository": {
"type": "git",
"url": "[email protected]:grmble/node-dicom.git"
},
"bin": {
"find-tags": "./bin/find-tags.js",
"find-uids": "./bin/find-uids.js"
},
"scripts": {
"build": "coffee --compile --output lib/ src/",
"prepublish": "coffee --compile --output lib/ src/",
"test": "nodeunit test"
},
"engines": {
"//": "node v0.10.31 is bad, seg faults. use 0.10.30 or 0.11",
"node": ">0.10.0"
},
"dependencies": {
"bunyan": "^1.0.1",
"concat-stream": "^1.4.6",
"iconv-lite": "^0.4.4",
"minimist": "^1.1.0",
"printf": "0.2.x"
},
"devDependencies": {
"coffee-script": "^1.8.0",
"grunt": "^0.4.5",
"grunt-contrib-coffee": "^0.12.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"nodeunit": "0.9.x",
"xml2js": "0.4.x"
},
"directories": {
"lib": "./lib"
}
}