-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
67 lines (67 loc) · 1.6 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
{
"name": "ambisonics",
"version": "0.2.3",
"description": "web audio classes for Ambisonic processing",
"author": "Archontis Politis <[email protected]>",
"contributors": [
{
"name": "David Poirier-Quinot",
"email": "[email protected]"
}
],
"main": "./dist/index.js",
"standalone": "ambisonics",
"scripts": {
"bundle": "node ./bin/runner --bundle",
"transpile": "node ./bin/runner --transpile",
"prewatch": "node ./bin/runner --transpile",
"watch": "node ./bin/runner --watch"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/polarch/JSAmbisonics.git"
},
"keywords": [
"audio",
"spatial",
"binaural",
"ambisonics"
],
"jshintConfig": {
"esnext": true,
"browser": true,
"node": true,
"devel": true
},
"dependencies": {
"babel-runtime": "^6.6.1",
"get-float-time-domain-data": "^0.1.0",
"numeric": "^1.2.6",
"serve-sofa-hrir": "Ircam-RnD/serveSofaHrir",
"spherical-harmonic-transform": "^0.1.0",
"convex-hull": "^1.0.3"
},
"devDependencies": {
"babel-core": "^6.6.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.6.5",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"benchmark": "^1.0.0",
"browserify": "^13.0.0",
"colors": "^1.1.2",
"fs-extra": "^0.26.5",
"ora": "^0.2.0",
"uglify-js": "^2.6.2",
"watch": "^0.17.1"
},
"files": [
"LICENSE",
"Readme.md",
"ambisonics.umd.js",
"ambisonics.min.js",
"src/",
"bin/",
"dist/"
]
}