-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.2 KB
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
{
"name": "nifti-reader-js",
"version": "0.8.0",
"description": "A JavaScript NIfTI file format reader.",
"main": "./dist/nifti.js",
"type": "module",
"exports": {
".": {
"import": "./dist/nifti.js"
}
},
"types": "dist/nifti.d.ts",
"files": [
"dist"
],
"devDependencies": {
"esbuild": "*",
"jsdoc-to-markdown": "*",
"prettier": "^3.5.0",
"tsify": "^5.0.4",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"scripts": {
"test": "vitest run __tests__/",
"build": "rm -rf build && mkdir build && tsc && esbuild dist/nifti.js --bundle --outfile=build/nifti-reader.js && esbuild dist/nifti.js --bundle --minify --outfile=build/nifti-reader-min.js",
"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",
"dependencies": {
"fflate": "^0.8.2"
}
}