-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 955 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
{
"name": "nbia-download-manager",
"description": "NBIA Chrome Application for downloading DICOM files and/or their annotations from The Cancer Imaging Archive (TCIA)",
"version": "1.0.0",
"author": "Tejas Shah <https://researchweb.iiit.ac.in/~tejas.shah>",
"contributors": [
{
"name": "Lawrence Tarbox",
"email": "[email protected]"
},
{
"name": "Ashish Sharma",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"dependencies": {
"async": "^1.2.0",
"tar-stream": "^1.1.5",
"minimongo": "^3.2.13"
},
"semistandard": {
"ignore" : ["*.bootstrap.js"],
"globals": ["chrome", "bundle", "dTable", "$", "launchData"]
},
"devDependencies": {
"browserify": "*",
"semistandard": "*"
},
"scripts": {
"lint": "semistandard --verbose",
"build": "browserify -s bundle browserifyJSFiles/fetchAndParseTar.js -o nbia-chrome-app/js/bundle.js"
}
}