-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 915 Bytes
/
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
{
"name": "media-library",
"version": "1.2.4",
"description": "a media library (indexer and search/browse api)",
"main": "./lib/medialibrary",
"scripts": {
"test": "gulp test",
"watch": "gulp watch",
"build": "gulp"
},
"keywords": [
"media",
"mp3",
"audio",
"library",
"id3",
"music"
],
"author": {
"name": "Guillaume Lecomte",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/guillaume86/media-library.git"
},
"license": "ISC",
"devDependencies": {
"gulp-coffee": "^2.3.1",
"coffee-script": "^1.10.0",
"gulp-util": "^3.0.7",
"gulp": "^3.9.0",
"gulp-mocha": "^2.2.0",
"should": "^8.0.1"
},
"dependencies": {
"async": "^1.5.0",
"filewalker": "nitinhayaran/node-filewalker",
"lodash": "^3.10.1",
"musicmetadata": "^2.0.2",
"nedb": "^1.5.0"
}
}