forked from sindresorhus/github-markdown-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1 KB
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
48
49
50
51
52
53
{
"name": "github-markdown-css",
"version": "1.0.2",
"description": "The minimal amount of CSS to replicate the GitHub Markdown style",
"license": "MIT",
"repository": "sindresorhus/github-markdown-css",
"bin": {
"github-markdown-css": "cli.js"
},
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "http://sindresorhus.com"
},
"contributors": [
{
"name": "Benjamin Tan",
"email": "[email protected]",
"url": "http://d10.github.io/"
}
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha",
"generate": "node cli.js !> github-markdown.css"
},
"files": [
"index.js",
"cli.js",
"github-markdown.css"
],
"keywords": [
"cli",
"bin",
"github",
"markdown",
"md",
"css",
"style",
"stylesheet"
],
"dependencies": {
"cheerio": "^0.17.0",
"css": "^2.0.0",
"got": "^1.0.0",
"uncss": "^0.8.3"
},
"devDependencies": {
"mocha": "*"
}
}