forked from google/neuroglancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.06 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
{
"name": "neuroglancer",
"description": "Visualization tool for 3-D volumetric data.",
"license": "Apache-2.0",
"version": "0.0.0-beta.0",
"repository": {
"type": "git",
"url": "git+https://github.com/google/neuroglancer.git"
},
"engines": {
"node": ">=5.9.0"
},
"scripts": {
"generate-code": "node ./config/generate_code.js",
"build-min": "webpack --config ./config/webpack.config.js --display-modules --env=min",
"build": "webpack --config ./config/webpack.config.js --display-modules --env=dev",
"build-python": "webpack --config ./config/webpack.config.js --display-modules --env=python-dev",
"build-python-min": "webpack --config ./config/webpack.config.js --display-modules --env=python-min",
"build-key_name_logger": "webpack --config ./config/webpack.key_name_logger.js",
"build:watch": "webpack --config ./config/webpack.config.js --watch",
"dev-server": "webpack-dev-server --config ./config/webpack.config.js",
"dev-server-python": "webpack-dev-server --config ./config/webpack.config.js --env=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",
"gulp": "gulp"
},
"devDependencies": {
"@types/jasmine": "^2.6.3",
"babel-plugin-istanbul": "^4.1.5",
"clang-format": "^1.1.0",
"gulp": "^3.9.1",
"gulp-clang-format": "^1.0.23",
"gulp-tslint": "^8.1.2",
"jasmine-core": "^2.8.0",
"karma": "^1.7.1",
"karma-benchmark": "^0.7.1",
"karma-benchmark-reporter": "^0.1.1",
"karma-browserstack-launcher": "^1.1.1",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.5",
"minimist": "^1.2.0",
"nunjucks": "^3.0.0",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"@types/codemirror": "0.0.43",
"@types/gl-matrix": "^2.3.2",
"@types/lodash": "^4.14.83",
"@types/pako": "^1.0.0",
"@types/sockjs-client": "^1.0.32",
"@types/text-encoding": "0.0.31",
"@types/webpack-env": "^1.13.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-classes": "^6.9.0",
"codemirror": "^5.31.0",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"gl-matrix": "^2.3.2",
"glsl-editor": "^1.0.0",
"glsl-strip-comments-loader": "^1.0.0",
"html-webpack-plugin": "^2.24.1",
"json-loader": "^0.5.4",
"lodash": "^4.13.1",
"nifti-reader-js": "^0.5.3",
"pako": "^1.0.6",
"raw-loader": "^0.5.1",
"sockjs-client": "^1.1.1",
"style-loader": "^0.18.2",
"ts-loader": "^3.1.1",
"typescript": "2.6.1",
"webpack": "^3.8.1",
"webpack-closure-compiler": "^2.1.2"
}
}