-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "omnitone",
"version": "1.3.0",
"description": "Spatial Audio Decoder in Web Audio API",
"main": "build/omnitone.js",
"keywords": [
"spatial audio",
"ambisonic",
"VR audio",
"360 audio",
"Web Audio API"
],
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.12.0",
"eslint-config-google": "^0.11.0",
"jsdoc": "^3.5.5",
"karma": "^3.1.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"lodash": "^4.17.11",
"marked": "^0.6.0",
"mocha": "^5.2.0",
"rollup": "^1.1.0",
"rollup-plugin-cleanup": "^3.1.0",
"rollup-plugin-terser": "^4.0.2"
},
"scripts": {
"build": "rollup -c",
"build-hrir": "node src/resources/build-hrir-base64.js",
"build-doc": "node_modules/.bin/jsdoc src/omnitone.js -d doc/",
"eslint": "./node_modules/.bin/eslint src/*",
"test": "node_modules/karma/bin/karma start"
},
"homepage": "https://github.com/GoogleChrome/omnitone",
"repository": {
"type": "git",
"url": "[email protected]:GoogleChrome/omnitone.git"
},
"bugs": {
"url": "https://github.com/GoogleChrome/omnitone/issues"
},
"author": "The Chromium Authors",
"license": "Apache-2.0"
}