-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "@elementbound/mdview",
"version": "1.2.2",
"description": "View markdown files from your terminal!",
"keywords": [
"markdown",
"md",
"cli",
"terminal",
"viewer",
"browser"
],
"homepage": "https://github.com/elementbound/mdview",
"repository": {
"type": "git",
"url": "https://github.com/elementbound/mdview.git"
},
"main": "src/app.js",
"scripts": {
"start": "node .",
"start:dev": "nodemon .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"mdserve": "./bin/mdserve",
"mdview": "./bin/mdview"
},
"author": "Tamas Galffy",
"license": "MIT",
"dependencies": {
"axios": "^1.3.4",
"cheerio": "^1.0.0-rc.3",
"dotenv-defaults": "^1.0.2",
"express": "^4.17.1",
"marked": "^4.2.12"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.21"
}
}