-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 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": "@niivue/niimath",
"version": "1.0.1",
"main": "dist/index.js",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node esbuild.config.js",
"makeTiny": "make tiny -C ../src",
"makeWasm": "make wasm -C ../src",
"parseHelpText": "node scripts/parseNiimathHelp.js",
"prebuild": "npm run makeTiny && npm run parseHelpText && npm run makeWasm && node scripts/pre-build.js -i src/niimath.js -o src/niimath.js",
"demo": "npm run build && npx http-server .",
"pub": "npm run build && npm publish --access public"
},
"keywords": [
"niivue",
"niimath",
"nifti",
"medical",
"imaging",
"brain"
],
"author": "NiiVue developers",
"license": "BSD-2-Clause",
"description": "A javascript library to easily use the WASM build of Chris Rorden's niimath command line program written in C",
"files": [
"dist/"
],
"devDependencies": {
"esbuild": "^0.23.1"
}
}