-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
48 lines (48 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
48
{
"name": "qiita_export_all",
"version": "1.6.1",
"description": "export all of your article at qiita",
"engines": {
"node": ">=12.0.0"
},
"bin": {
"qiita_export_all": "bin/index.js"
},
"scripts": {
"test": "ava --verbose",
"start": "node bin/index.js",
"eslint": "eslint --cache --ext .js .",
"eslint:fix": "eslint --cache --ext .js . --fix",
"prettier": "prettier --write ."
},
"keywords": [
"qiita"
],
"author": "yumetodo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yumetodo/qiita_export_all.git"
},
"devDependencies": {
"ava": "^4.0.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"nock": "^13.2.1",
"prettier": "^2.5.1"
},
"dependencies": {
"commander": "^8.3.0",
"gaxios": "^4.3.3",
"mime": "^3.0.0",
"mkdirp": "^1.0.4",
"parse-link-header": "^2.0.0",
"sanitize-filename": "^1.6.3",
"unescape": "^1.0.1",
"validate.io-uri": "^1.0.0"
}
}