-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 892 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
39
40
41
42
43
44
45
46
47
{
"name": "@pavanjadhaw/mdm",
"version": "0.0.4",
"description": "publish your markdown to Medium, from the CLI",
"author": "Pavan Jadhaw <@pavanjadhaw>",
"main": "cli.js",
"bin": {
"mdm": "app/bin/mdm"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavanjadhaw/mdm.git"
},
"keywords": [
"medium",
"markdown",
"cli"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pavanjadhaw/mdm/issues"
},
"homepage": "https://github.com/pavanjadhaw/mdm#readme",
"dependencies": {
"front-matter": "^3.0.1",
"got": "^9.5.0",
"meow": "^5.0.0",
"ora": "^3.0.0"
},
"devDependencies": {
"prettier": "^1.15.3",
"xo": "^0.23.0"
},
"xo": {
"space": true,
"prettier": true,
"envs": [
"node"
]
}
}