-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
26 lines (26 loc) · 901 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
{
"name": "node-itunes-rss-data",
"version": "1.1.1",
"description": "Tracks itunes rss feed data. — Edit",
"main": "lib/index.js",
"scripts": {
"populate-countries": "curl https://rss.itunes.apple.com/data/lang/en-US/common.json | json feed_country > data/countries.json",
"populate-media": "node lib/populate-media.js > data/media.json",
"populate": "npm run populate-media && npm run populate-countries"
},
"repository": {
"type": "git",
"url": "git://github.com/nathanbowser/node-itunes-rss-data.git"
},
"author": "Nathan Bowser <nathan.bowser@spiderstrategies.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/nathanbowser/node-itunes-rss-data/issues"
},
"homepage": "https://github.com/nathanbowser/node-itunes-rss-data",
"dependencies": {
"JSONStream": "^0.8.0",
"event-stream": "^3.1.1",
"request": "^2.40.0"
}
}