-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 881 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 881 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "github-markdown",
"version": "3.2.0",
"description": "Parse GitHub flavored markdown to html.",
"license": "MIT",
"repository": "1000ch/node-github-markdown",
"author": {
"name": "Shogo Sensui",
"email": "shogo.sensui@gmail.com",
"url": "https://github.com/1000ch"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "xo && ava"
},
"bin": {
"ghmd": "cmd.js",
"github-markdown": "cmd.js"
},
"keywords": [
"markdown",
"github"
],
"dependencies": {
"get-stdin": "^5.0.1",
"globby": "^6.1.0",
"highlight.js": "^9.12.0",
"markdown-it": "^8.3.1",
"minimist": "^1.2.0",
"pify": "^3.0.0",
"primer-css": "^9.0.0",
"pug": "^2.0.0-rc.2"
},
"devDependencies": {
"ava": "*",
"execa": "^0.7.0",
"is-html": "^1.0.0",
"xo": "*"
},
"xo": {
"space": 2
}
}