forked from spencermountain/dumpster-dip
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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
48
49
50
51
{
"name": "wikipedia-dip",
"version": "2.0.0",
"description": "parse a wikipedia dump into tiny files",
"main": "./src/index.js",
"type": "module",
"scripts": {
"clean": "rm -rf ./dip && mkdir ./dip",
"stat": "find dip -type f | wc -l",
"watch": "node ./scratch.js"
},
"bin": {
"wikipedia-dip": "./bin/wikipedia-dip.js"
},
"exports": {
".": {
"import": "./src/index.js"
},
"./nested-path": {
"import": "./src/makePath.js"
}
},
"author": "Sina Semnani, Spencer Kelly <spencermountain@gmail.com> (http://spencermounta.in)",
"repository": {
"type": "git",
"url": "git+https://github.com/stanford-oval/wikipedia-dip"
},
"bugs": {
"url": "https://github.com/stanford-oval/wikipedia-dip/issues"
},
"homepage": "https://github.com/stanford-oval/wikipedia-dip#readme",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@nathanpb/progress": "^3.1.0",
"html-entities": "^2.4.0",
"inquirer": "^9.2.12",
"jsonfn": "0.31.0",
"optimist": "^0.5.2",
"prompt": "^1.3.0",
"shelljs": "^0.8.5",
"spacetime": "7.5.0",
"sunday-driver": "1.0.2",
"wtf_wikipedia": ">=10.3.0"
},
"license": "MIT",
"devDependencies": {
"eslint-plugin-regexp": "^2.2.0"
}
}