-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.1 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.1 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
51
{
"name": "musicbrainz",
"description": "A MusicBrainz XML Web Service Version 2 client",
"keywords": [
"musicbrainz",
"metadata",
"mp3",
"flac",
"ogg",
"music",
"tagging",
"api"
],
"version": "0.2.7",
"homepage": "http://maxkueng.com/node-musicbrainz",
"repository": {
"type": "git",
"url": "git://github.com/maxkueng/node-musicbrainz.git"
},
"author": "Max Kueng <me@maxkueng.com> (http://maxkueng.com/)",
"contributors": [
"Alex Ehrnschwender (https://github.com/alexanderscott)",
"Sam (https://github.com/samcday)",
"Marco Godoy (https://github.com/ghostnumber7)"
],
"directories": {
"lib": "./lib"
},
"dependencies": {
"request": "^2.88.2",
"timetrickle": "~0.1.1",
"xml2js": "0.1.x"
},
"devDependencies": {
"mocha": "~1.15.1",
"chai": "~1.8.1"
},
"scripts": {
"test": "node_modules/.bin/mocha"
},
"engines": [
"node >=0.4.0"
],
"main": "./lib/musicbrainz",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/maxkueng/node-musicbrainz/raw/master/LICENSE"
}
]
}