forked from r03ert0/thresholdmann
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.02 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
{
"name": "thresholdmann",
"version": "1.0.0",
"description": "A Web tool for interactively creating adaptive thresholds to segment nifti images.",
"main": "thresholdmann.js",
"scripts": {
"start": "http-server .",
"test": "npm run install:browsers; mocha --require fixtures.mjs --exit",
"install:browsers": "npx playwright install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neuroanatomy/thresholdmann.git"
},
"keywords": [
"MRI",
"neuroimaging",
"threshold",
"Web",
"tool",
"interactive"
],
"author": "Roberto Toro <[email protected]> (https://neuroanatomy.github.io)",
"license": "ISC",
"bugs": {
"url": "https://github.com/neuroanatomy/thresholdmann/issues"
},
"homepage": "https://github.com/neuroanatomy/thresholdmann#readme",
"devDependencies": {
"@playwright/test": "^1.41.2",
"mocha": "^10.2.0"
},
"dependencies": {
"eslint-config-naat": "github:neuroanatomy/eslint-config-naat",
"http-server": "^14.1.1"
}
}