-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
56 lines (56 loc) · 1.58 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
47
48
49
50
51
52
53
54
55
56
{
"name": "nifti-reader-js",
"version": "0.6.8",
"description": "A JavaScript NIfTI file format reader.",
"main": "dist/src/nifti.js",
"types": "dist/src/nifti.d.ts",
"directories": {
"test": "tests"
},
"files": [
"release/current/*.js",
"dist/src/*.js",
"dist/src/*.d.ts",
"dist/src/*.js.map",
"dist/src/*.ts",
"src/*.js",
"src/*.d.ts",
"src/*.js.map",
"src/*.ts"
],
"dependencies": {
"fflate": "*"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"esbuild": "*",
"jsdoc-to-markdown": "*",
"mocha": "*",
"ts-node": "^10.9.1",
"tsify": "^5.0.4",
"typescript": "^5.0.4"
},
"scripts": {
"test": "mocha -r ts-node/register __tests__/**/*.spec.ts",
"test-js": "npm run build; npm run release; mocha --timeout 0 tests",
"build": "rm -rf build; mkdir build; tsc; esbuild dist/src/nifti.js --bundle --outfile=build/nifti-reader.js; esbuild dist/src/nifti.js --bundle --minify --outfile=build/nifti-reader-min.js",
"release": "npm run build; rm release/current/*.js; cp build/*.js release/current/.",
"doc": "rm -rf build; mkdir build; ./node_modules/.bin/jsdoc2md dist/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"
}