-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
37 lines (37 loc) · 928 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
{
"name": "node-reddit-scraper",
"version": "2.0.0",
"description": "a node.js powered async scraper for reddit.",
"main": "index.js",
"dependencies": {
"async": "^1.5.0",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"request": "^2.67.0",
"sanitize-filename": "^1.5.3",
"winston": "^0.9.0"
},
"devDependencies": {
"mocha": "^2.3.4",
"should": "^7.1.1"
},
"scripts": {
"run": "node index.js",
"test": "NODE_ENV=test mocha -R spec -b --recursive --timeout 20000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikedevita/node-reddit-scraper.git"
},
"keywords": [
"reddit",
"scraper",
"node.js"
],
"author": "Mike DeVita <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikedevita/node-reddit-scraper/issues"
},
"homepage": "https://github.com/mikedevita/node-reddit-scraper#readme"
}