forked from matiassingers/spotify-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 938 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
{
"name": "spotify-crawler",
"version": "0.2.0",
"description": "Crawls all international Spotify pages and returns prices for each country.",
"main": "index.js",
"scripts": {
"test": "mocha -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/matiassingers/spotify-crawler"
},
"keywords": [
"spotify",
"crawler",
"scrape",
"pricing"
],
"author": {
"name": "Matias Singers",
"email": "mail@matiassingers.com",
"url": "http://mts.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/matiassingers/spotify-crawler/issues"
},
"homepage": "https://github.com/matiassingers/spotify-crawler",
"dependencies": {
"promise-request": "0.0.1",
"when": "3.6.3",
"cheerio": "0.18.0",
"lodash": "2.4.1",
"money": "0.2.0",
"async": "0.9.0",
"string-format": "0.2.1"
},
"devDependencies": {
"mocha": "2.0.1"
}
}