-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "resonance-audio",
"version": "1.0.0",
"description": "Resonance Audio library: Spatial Audio for the Web",
"main": "build/resonance-audio.js",
"keywords": [
"spatial audio",
"ambisonic",
"VR audio",
"360 audio",
"Web Audio API",
"interactive audio"
],
"devDependencies": {
"chai": "^3.5.0",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^4.7.0",
"eslint-config-google": "^0.9.1",
"jsdoc": "^3.5.4",
"karma": "^1.6.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"mocha": "^3.0.0",
"uglifyjs-webpack-plugin": "^1.0.0-beta.2",
"webpack": "^3.6.0",
"doctoc": "^1.3.0"
},
"dependencies": {
"omnitone": "^1.0.5"
},
"scripts": {
"build": "webpack --progress --color",
"build-all": "webpack --progress --color && webpack --config webpack.config.all.js --progress --color",
"build-doc": "jsdoc src/resonance-audio.js src/source.js src/utils.js -R README.md -d doc",
"eslint": "eslint examples/resources/js/*.js src/*.js test/*.js",
"test": "karma start",
"watch": "webpack --progress --color --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/resonance-audio/resonance-audio-web-sdk"
},
"homepage": "https://github.com/resonance-audio/resonance-audio-web-sdk",
"bugs": {
"url": "https://github.com/resonance-audio/resonance-audio-web-sdk/issues"
},
"author": "Andrew Allen",
"license": "Apache-2.0"
}