-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 771 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 771 Bytes
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
{
"name": "markdown-parser",
"version": "1.0.0",
"description": "An api for parsing markdown to html and html to markdown",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "npm install",
"start": "node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/SpiffGreen/markdownparser.git"
},
"keywords": [
"servejs",
"markdown",
"html",
"markdown2html",
"markdown-to-html",
"parsing"
],
"author": "Spiff Jekey-Green",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpiffGreen/markdownparser/issues"
},
"homepage": "https://github.com/SpiffGreen/markdownparser#readme",
"dependencies": {
"serve-dot-js": "0.0.1"
}
}