-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1008 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
38
{
"name": "get-wiki-images",
"description": "A simple script that let you quickly back up all images on the wiki via the command line",
"version": "2.0.0",
"main": "index.js",
"author": "Dragon-Fish",
"license": "MIT",
"repository": "https://github.com/Dragon-Fish/get-wiki-images.git",
"dependencies": {
"axios": "^0.21.0",
"download": "^8.0.0",
"fs-extra": "^9.0.1",
"inquirer": "^7.3.3",
"valid-url": "^1.0.9"
},
"scripts": {
"start": "node ./index.js",
"prettier": "prettier --write ./index.js ./module/*.js",
"publish:canary": "npm publish --tag canary",
"publish:stable": "npm publish --tag latest"
},
"bin": {
"get-wiki-images": "./index.js"
},
"bugs": {
"url": "https://github.com/Dragon-Fish/get-wiki-images/issues"
},
"homepage": "https://github.com/Dragon-Fish/get-wiki-images#readme",
"keywords": [
"ajax",
"mediawiki",
"mediawiki-api",
"cli"
],
"devDependencies": {
"prettier": "^2.2.0"
}
}