forked from rii-mango/Daikon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.12 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
{
"name": "daikon",
"version": "1.2.42",
"description": "A JavaScript DICOM reader.",
"main": "src/main.js",
"directories": {
"test": "tests"
},
"dependencies": {
"jpeg-lossless-decoder-js": "git+https://github.com/rii-mango/JPEGLosslessDecoderJS.git",
"pako": "^1.0.6"
},
"devDependencies": {
"browserify": "^16.1.1",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.0.5",
"uglifyjs": "^2.4.11"
},
"scripts": {
"test": "mocha --timeout 0 tests",
"build": "rm -rf build; mkdir build; browserify --standalone daikon src/main.js -o build/daikon.js; uglifyjs build/daikon.js -o build/daikon-min.js",
"release": "rm release/current/*.js; cp build/*.js release/current/.",
"doc": "rm -rf build; mkdir build; ./node_modules/.bin/jsdoc2md src/*.js > build/docs.md"
},
"repository": {
"type": "git",
"url": "https://github.com/rii-mango/Daikon.git"
},
"keywords": [
"JavaScript",
"DICOM"
],
"author": "Michael Martinez",
"license": "MIT",
"bugs": {
"url": "https://github.com/rii-mango/Daikon/issues"
},
"homepage": "https://github.com/rii-mango/Daikon"
}