-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "node-mp3-player",
"version": "1.0.3",
"description": "Use the browser Audio api to play mp3 files in node",
"main": "index.js",
"scripts": {
"prepare": "patch-package",
"test": "standard && tape ./test/*.spec.js | tap-spec",
"coverage": "nyc --reporter lcov tape ./test/*.spec.js | tap-spec",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"mp3",
"electron",
"html5",
"browser-api",
"audio"
],
"author": "Aram Drevekenin <grimsniffer@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CommaSword/node-mp3-player.git"
},
"dependencies": {
"JSONStream": "^1.3.2",
"electron-spawn": "^5.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"coveralls": "^3.0.0",
"nyc": "^11.4.1",
"patch-package": "^5.1.1",
"proxyquire": "^1.8.0",
"sinon": "^4.3.0",
"standard": "^10.0.3",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"standard": {
"globals": [
"Audio"
]
}
}