-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.07 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": "bandcamp-get-music",
"version": "0.1.1",
"description": "A CLI tool that enables you to download single tracks or entire albums from bandcamp",
"main": "bandcamp-get-music.js",
"dependencies": {
"cheerio": "^0.20.0",
"colors": "^1.2.1",
"commander": "^2.9.0",
"multi-progress": "^2.0.0",
"progress": "^2.0.0",
"request": "^2.74.0"
},
"devDependencies": {
"expect.js": "^0.3.1",
"gulp": "^3.9.1",
"gulp-mocha": "^3.0.1",
"mocha": "^3.0.2",
"should": "^11.1.0",
"sinon": "^1.17.6"
},
"scripts": {
"test": "./node_modules/gulp test"
},
"bin": {
"bandcamp-get-music": "./bin/bandcamp-get-music.js"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/acmello/bandcamp-music-hack.git"
},
"keywords": [
"bandcamp",
"music",
"download",
"music"
],
"author": "acmello",
"license": "MIT",
"bugs": {
"url": "https://github.com/acmello/bandcamp-get-music/issues"
},
"homepage": "https://github.com/acmello/bandcamp-get-music#readme"
}