-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
72 lines (72 loc) · 1.54 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "markdown-tistory",
"version": "0.2.0",
"description": "markdown supporter for tistory blog",
"main": "./lib/index.js",
"type": "module",
"unmockedModulePathPatterns": [
"jasmine-expect"
],
"jest": {
"verbose": true,
"modulePaths": [
"<rootDir>"
],
"moduleDirectories": [
"node_modules",
"src"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"scripts": {
"test": "jest",
"cmd": "babel-node bin/markdown-tistory.js",
"deploy": "npm publish"
},
"bin": {
"markdown-tistory": "bin/markdown-tistory.js"
},
"preferGlobal": true,
"keywords": [
"tistory",
"markdown",
"github"
],
"author": {
"name": "jojoldu",
"email": "[email protected]",
"blog": "jojoldu.tistory.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jojoldu/markdown-tistory"
},
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"chalk": "^4.0.0",
"express": "^4.17.1",
"form-data": "^2.5.1",
"fs-extra": "^4.0.3",
"open": "^6.0.0",
"open-in-editor": "^2.2.0",
"query-string": "^6.12.1",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"showdown": "^1.9.1",
"to-markdown": "^3.1.1",
"xml2js": "^0.4.23",
"xml2js-es6-promise": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@types/node": "^14.0.1",
"babel-jest": "^25.3.0",
"jasmine-expect": "^4.0.3",
"jest": "^25.3.0"
}
}