forked from mamamia5x/markdownpedia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 802 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
{
"name": "markdownpedia",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"convert": "node index.js",
"serve": "node server.js",
"validate": "prettier --check .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/mamamia5x/markdownpedia.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mamamia5x/markdownpedia/issues"
},
"homepage": "https://github.com/mamamia5x/markdownpedia#readme",
"dependencies": {
"express": "^4.17.1",
"fs-extra": "^9.1.0",
"readdirp": "^3.5.0",
"showdown": "^1.9.1"
},
"devDependencies": {
"prettier": "2.2.1"
}
}