forked from spencermountain/dumpster-dive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
{
"author": "Spencer Kelly <[email protected]> (http://spencermounta.in)",
"name": "dumpster-dive",
"description": "get a wikipedia dump parsed into mongodb",
"version": "5.2.1",
"scripts": {
"test": "node ./scripts/test.js",
"cleanup": "rm /tmp/worker.logs && touch /tmp/worker.logs",
"watch": "node ./scratch.js",
"lint": "eslint ./src/**/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/spencermountain/wikipedia-to-mongodb.git"
},
"bin": {
"dumpster": "./bin/dumpster.js"
},
"engines": {
"node": ">=6.0.0"
},
"main": "./src/index.js",
"prettier": {
"trailingComma": "none",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"printWidth": 100
},
"dependencies": {
"chalk": "2.4.2",
"jsonfn": "0.31.0",
"mongodb": "3.2.3",
"prettysize": "2.0.0",
"sunday-driver": "1.0.2",
"worker-nodes": "1.6.1",
"wtf_wikipedia": "7.3.0",
"yargs": "13.2.2"
},
"devDependencies": {
"shelljs": "0.8.3",
"tap-spec": "5.0.0",
"tape": "4.10.1"
},
"license": "MIT"
}