forked from google/neuroglancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 3.23 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@niaid/neuroglancer",
"description": "Visualization tool for 3-D volumetric data.",
"license": "Apache-2.0",
"version": "2.23.0",
"main": "dist/module/main_module.js",
"repository": {
"type": "git",
"url": "git+https://github.com/niad/neuroglancer.git"
},
"engines": {
"node": ">=12"
},
"scripts": {
"generate-code": "node ./config/generate_code.js",
"build-min": "node ./config/esbuild-cli.js --config=min",
"build": "node ./config/esbuild-cli.js --config=min",
"build:watch": "node ./config/esbuild-cli.js --config=dev --serve --watch",
"dev-server": "node ./config/esbuild-cli.js --config=dev --serve --watch",
"dev-server-python": "node ./config/esbuild-cli.js --config=python-dev --serve --watch",
"build-module": "npm run typecheck && npm run clean && node ./config/esbuild-cli.js --config=module && npm run tsc-alias && npm run copy-css-files",
"clean": "rimraf ./dist",
"copy-css-files": "cd src && find . -name '*.css' | cpio -pdm ../dist/module",
"tsc-alias": "tsc-alias -p tsconfig.json --outDir ./dist/module --verbose",
"build-python": "node ./config/esbuild-cli.js --config=python-min",
"build-python-min": "node ./config/esbuild-cli.js --config=python-min",
"build-python-dev": "node ./config/esbuild-cli.js --config=python-dev",
"test": "karma start ./config/karma.conf.js --single-run",
"test:watch": "karma start ./config/karma.conf.js --no-single-run",
"benchmark": "karma start ./config/karma.benchmark.js --single-run",
"benchmark:watch": "karma start ./config/karma.benchmark.js --no-single-run",
"prepublishOnly": "npm run build-module",
"gulp": "gulp",
"lint": "eslint . --ext .ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/jasmine": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"benchmark": "^2.1.4",
"chokidar": "^3.5.1",
"clang-format": "^1.5.0",
"colors": "^1.4.0",
"connect": "^3.7.0",
"eslint": "^7.28.0",
"event-stream": "^4.0.1",
"faye-websocket": "^0.11.4",
"gulp": "^4.0.2",
"gulp-clang-format": "^1.0.27",
"jasmine-core": "^4.5.0",
"karma": "^6.3.4",
"karma-benchmark": "^1.0.4",
"karma-benchmark-reporter": "^0.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.1",
"karma-jasmine": "^5.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.4.0",
"morgan": "^1.10.0",
"nunjucks": "^3.2.3",
"send": "^0.18.0",
"tsc-alias": "^1.8.5",
"yargs": "^17.0.1"
},
"dependencies": {
"@types/codemirror": "5.60.0",
"@types/gl-matrix": "^2.4.5",
"@types/lodash": "^4.14.170",
"@types/node": "^18.14.6",
"@types/pako": "^2.0.0",
"@types/webpack-env": "^1.16.0",
"codemirror": "^5.61.1",
"esbuild": "^0.17.11",
"gl-matrix": "3.1.0",
"glsl-editor": "^1.0.0",
"ikonate": "mikolajdobrucki/ikonate#a86b4107c6ec717e7877f880a930d1ccf0b59d89",
"lodash": "^4.17.21",
"nifti-reader-js": "^0.5.4",
"numcodecs": "^0.1.1",
"pako": "^2.0.3",
"svg-inline-loader": "^0.8.2",
"typescript": "^4.3.2"
},
"overrides": {
"karma-benchmark": {
"karma": "$karma"
}
}
}