-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "dumpster-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": {
"dumpster-dip": "./bin/dumpster-dip.js"
},
"exports": {
".": {
"import": "./src/index.js"
},
"./nested-path": {
"import": "./src/makePath.js"
}
},
"author": "Spencer Kelly <[email protected]> (http://spencermounta.in)",
"repository": {
"type": "git",
"url": "git+https://github.com/spencermountain/dumpster-dip.git"
},
"bugs": {
"url": "https://github.com/spencermountain/dumpster-dip/issues"
},
"homepage": "https://github.com/spencermountain/dumpster-dip#readme",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"html-entities": "^2.4.0",
"inquirer": "^9.2.12",
"jsonfn": "0.31.0",
"optimist": "^0.6.1",
"prompt": "^1.3.0",
"shelljs": "^0.8.5",
"spacetime": "7.5.0",
"sunday-driver": "1.0.2",
"wtf_wikipedia": ">=10.3.0"
},
"license": "MIT"
}