-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.06 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.06 KB
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
{
"name": "id3-reader",
"version": "0.0.2",
"description": "mp3 ID3 reader for Node.js",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-cover": "istanbul cover _mocha -- -u exports",
"report-cover": "codecov"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/magicdawn/node-id3-reader.git"
},
"keywords": [
"mp3",
"id3",
"id3v2"
],
"author": "magicdawn",
"license": "MIT",
"bugs": {
"url": "https://github.com/magicdawn/node-id3-reader/issues"
},
"homepage": "https://github.com/magicdawn/node-id3-reader#readme",
"devDependencies": {
"co-mocha": "^1.1.3",
"codecov": "^1.0.1",
"eslint": "^3.10.0",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"should": "^11.1.1"
},
"dependencies": {
"co": "^4.6.0",
"dissolve": "^0.3.3",
"fs-extra": "^1.0.0",
"lodash": "^4.17.4",
"promise.ify": "^0.3.0",
"stream-browserify": "^2.0.1"
},
"files": [
"lib",
"index.js",
"package.json",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}