-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
47 lines (47 loc) · 1.01 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
46
47
{
"name": "bandcamp-scraper",
"version": "1.5.0",
"description": "A scraper for https://bandcamp.com",
"main": "lib/index.js",
"scripts": {
"test": "standard && jasmine",
"lint": "standard",
"lint-fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/masterT/bandcamp-scraper"
},
"author": "Simon Thiboutôt <[email protected]> (http://simonthiboutot.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/masterT/bandcamp-scraper/issues"
},
"homepage": "https://github.com/masterT/bandcamp-scraper",
"devDependencies": {
"jasmine": "^2.8.0",
"standard": "^16.0.3"
},
"dependencies": {
"ajv": "^4.11.8",
"cheerio": "^0.22.0",
"json5": "^0.5.1",
"linez": "^4.1.4",
"scrape-it": "^3.3.2",
"tinyreq": "^3.2.5"
},
"directories": {
"example": "examples"
},
"keywords": [
"scraper",
"api",
"bandcamp",
"music",
"resources",
"album",
"song",
"product",
"fan"
]
}