forked from rii-mango/NIFTI-Reader-JS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "nifti-reader-js",
"version": "0.6.2",
"description": "A JavaScript NIfTI file format reader.",
"main": "src/nifti.js",
"directories": {
"test": "tests"
},
"dependencies": {
"fflate": "*"
},
"devDependencies": {
"browserify": "*",
"jsdoc-to-markdown": "*",
"mocha": "*",
"uglifyjs": "^2.4.11"
},
"scripts": {
"test": "mocha --timeout 0 tests",
"build": "rm -rf build; mkdir build; browserify --standalone nifti src/nifti.js -o build/nifti-reader.js; uglifyjs build/nifti-reader.js -o build/nifti-reader-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/NIFTI-Reader-JS.git"
},
"keywords": [
"JavaScript",
"NIFTI"
],
"author": "Michael Martinez",
"license": "MIT",
"bugs": {
"url": "https://github.com/rii-mango/NIFTI-Reader-JS/issues"
},
"homepage": "https://github.com/rii-mango/NIFTI-Reader-JS"
}