-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
52
53
54
55
{
"name": "gimonfu",
"description": "CLI tool to manage articles of Hatena-blog.",
"version": "0.4.0",
"author": "Keisuke Nakayama <[email protected]>",
"bin": {
"gimonfu": "bin/gimonfu"
},
"bugs": "https://github.com/basd4g/gimonfu/issues",
"dependencies": {
"commander": "^7.2.0",
"front-matter": "^4.0.2",
"promise": "^8.1.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"xml-escape": "^1.1.0",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/promise": "^7.1.30",
"@types/request": "^2.48.5",
"@types/request-promise-native": "^1.0.17",
"@types/xml-escape": "^1.1.0",
"@types/xml2js": "^0.4.8",
"jest": "27",
"ts-jest": "^27.0.3",
"ts-loader": "^9.2.3",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2"
},
"files": [
"dist",
"bin"
],
"homepage": "https://github.com/basd4g/gimonfu",
"keywords": [
"CLI",
"blog",
"markdown"
],
"license": "MIT",
"main": "dist/index.js",
"repository": "https://github.com/basd4g/gimonfu.git",
"scripts": {
"build": "webpack --mode=development",
"build:prod": "webpack --mode=production",
"prepublishOnly": "npm run build:prod",
"test": "jest",
"test:coverage": "jest --coverage"
}
}