-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
81 lines (81 loc) · 2.38 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
{
"name": "pixpipe",
"version": "0.2.0",
"description": "A image processing pipeline in pure Javascript for browsers and Node",
"entry": "src/pixpipe.js",
"main": "dist/pixpipe.js",
"min": "dist/pixpipe.min.js",
"es6": "dist/pixpipe.es6.js",
"esmodule": "dist/pixpipe.esmodule.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"dev": "serve -l 5678 . & rollup -w -c rollup.config.dev.js",
"doc": "node ./docgen/ConfigGenerator.js; documentation build src/pixpipe.js --format html --sort-order 'alpha' --project-name Pixpipejs --config ./docgen/config.yml --theme ./docgen/themes/pixpipe_theme/ -o ./doc/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pixpipe/pixpipejs.git"
},
"keywords": [
"image",
"processing",
"MRI",
"fMRI",
"EEG",
"signal",
"math",
"browser",
"node",
"javascript",
"web"
],
"author": "Jonathan Lurie",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pixpipe/pixpipejs/issues"
},
"homepage": "https://github.com/Pixpipe/pixpipejs#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015-rollup": "^3.0.0",
"bvh-tree-plus": "^1.0.2",
"codecutils": "^0.1.1",
"delaunay-fast": "^1.0.1",
"differenceequationsignal1d": "^0.1.1",
"documentation": "^6.1.0",
"edfdecoder": "^0.1.1",
"expr-eval": "^1.0.0",
"file-saver": "^1.3.3",
"geotiff": "^0.4.1",
"gl-matrix": "^2.4.0",
"google-closure-compiler-js": "^20180204.0.0",
"joi-browser": "^10.6.1",
"jpeg-js": "^0.3.3",
"js-md5": "^0.7.3",
"mniobjparser": "^0.1.2",
"natninter": "^0.1.3",
"ndarray": "^1.0.18",
"ndarray-fft": "^1.0.3",
"nifti-reader-js": "^0.5.4",
"pako": "^1.0.6",
"pixbincodec": "^0.1.2",
"process": "^0.11.10",
"qeegmodfile": "^0.1.3",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-bundle-worker": "^0.1.0",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-uglify": "^3.0.0",
"serve": "^6.3.1",
"simplify-js": "^1.2.1",
"upng-js": "^1.0.0",
"yamljs": "^0.3.0",
"zeros": "^1.0.0"
},
"dependencies": {}
}