-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 737 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 737 Bytes
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
{
"name": "mp3-duration",
"version": "1.1.0",
"description": "Get the duration of an MP3 file",
"main": "index.js",
"scripts": {
"test": "mocha --harmony tests/test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/ddsol/mp3-duration"
},
"engines": {
"node": ">=0.11.0"
},
"keywords": [
"mp3",
"duration",
"length",
"file",
"audio"
],
"author": "Han de Boer",
"license": "MIT",
"bugs": {
"url": "https://github.com/ddsol/mp3-duration/issues"
},
"homepage": "https://github.com/ddsol/mp3-duration",
"dependencies": {
"bluebird": "^3.5.1",
"bluebird-co": "^2.2.0"
},
"devDependencies": {
"mocha": "^2.2.4",
"nyc": "^11.2.1"
}
}