This repository has been archived by the owner on May 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "audio-director",
"version": "0.0.20",
"description": "Manage browser audio sources and playback",
"main": "./index.js",
"scripts": {
"test": "./node_modules/tape/bin/tape test/*.js",
"watch": "watchify index.js -o dist/audio-director.js",
"watch:example": "watchify example/main.js -o example/bundle.js",
"build:example": "browserify example/main.js -o example/bundle.js",
"build": "browserify index.js -o dist/audio-director.js",
"docs": "jsdoc -R README.md ./lib -c jsdoc.json -r -d docs/",
"docs:md": "jsdoc2md lib/player.js"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/audio-director"
},
"keywords": [
"audio",
"music",
"manage",
"player"
],
"author": {
"name": "Miguel Mota",
"email": "hello@miguelmota.com",
"url": "http://www.miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/audio-director/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/miguelmota/audio-director/issues"
},
"homepage": "https://github.com/miguelmota/audio-director",
"devDependencies": {
"browserify": "^16.2.3",
"eslint": "^4.4.0",
"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",
"jsdoc": "^3.5.3",
"jsdoc-oblivion": "0.0.9",
"tape": "^4.9.2",
"watchify": "^3.9.0"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"arraybuffer-to-audiobuffer": "0.0.1",
"d3-scale": "^1.0.6",
"eventemitter2": "^4.1.2",
"qs": "^6.4.0",
"random-int": "^1.0.0"
}
}