-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "browser-audio-player",
"description": "An abstract-audio-player that runs in browsers",
"version": "0.0.1",
"author": "Bret Comnes",
"bugs": {
"url": "https://github.com/hypermodules/browser-audio-player/issues"
},
"dependencies": {
"global": "^4.3.2",
"nanobus": "^4.3.1"
},
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"bankai": "^9.0.0-rc11",
"browserify": "^14.5.0",
"dependency-check": "^2.9.1",
"npm-run-all": "^4.1.2",
"standard": "^10.0.3",
"tape-run": "^3.0.0"
},
"homepage": "https://github.com/hypermodules/browser-audio-player#readme",
"keywords": [
"abstract-audio-player",
"audio",
"browser",
"browserify",
"playback"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hypermodules/browser-audio-player.git"
},
"scripts": {
"build": "bankai build example/complex/index.js dist",
"start": "budo example/complex/index.js --live --open",
"start:simple": "budo example/simple/index.js --live --open",
"start:test": "budo test.js --live --open",
"test": "run-s test:*",
"test:browser": "browserify test.js | tape-run | tap-format-spec",
"test:deps": "dependency-check .",
"test:lint": "standard"
}
}