-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.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
{
"name": "chamberbrain-lab-kit",
"version": "0.3.0",
"description": "Tools used by Chamberlab to sonify & visualise Nanobrain data.",
"repository": {
"type": "git",
"url": "git+https://github.com/chamberlab/node-chamberbrain-lab-kit.git"
},
"bugs": {
"url": "https://github.com/chamberlab/node-chamberbrain-lab-kit/issues"
},
"homepage": "https://github.com/chamberlab",
"engines": {
"node": ">= 8.6.0",
"npm": ">= 5.3.0"
},
"main": "dist/index.js",
"bin": {
"nb-convert": "dist/cli/nb-convert.js",
"nb-reduce": "dist/cli/nb-reduce.js",
"nb-playback": "dist/cli/nb-playback.js"
},
"license": "WTFPL",
"scripts": {
"convert": "cross-env node dist/nanobrains/convert.js",
"playback": "cross-env node dist/nanobrains/playback.js",
"reduce": "cross-env node dist/nanobrains/reduce.js",
"build": "babel -d dist src",
"watch": "babel --watch -d dist src",
"test": "echo \"Yikes! No tests yet.\" && exit 0"
},
"author": "Das Antonym / Chamberlab",
"dependencies": {
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"big.js": "^4.0.0",
"bignumber.js": "^4.1.0",
"bluebird": "^3.5.0",
"chamberlib": "file:../node-chamberlib",
"clui": "^0.3.6",
"colors": "^1.1.2",
"cross-env": "^5.0.5",
"d3-node": "^1.1.1",
"debug": "^3.1.0",
"fast-csv": "^2.4.0",
"gm": "^1.23.0",
"hdf5": "^0.3.3",
"microtime": "^2.1.6",
"midi": "^0.9.5",
"midievents": "^1.0.1",
"midifile": "^1.0.4",
"moment": "^2.18.1",
"mz": "^2.7.0",
"nanotimer": "^0.3.15",
"node-lmdb": "^0.4.13",
"osc": "^2.2.0",
"protocol-buffers": "^3.2.1",
"sharp": "^0.18.4",
"slug": "^0.9.1",
"tiny-emitter": "^2.0.2",
"tonal": "^0.69.6",
"tonal-array": "^0.69.7",
"uuid": "^3.1.0",
"vectorious": "^4.8.1",
"yargs": "^9.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1"
}
}