forked from sindresorhus/github-markdown-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1006 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
32
33
34
35
36
37
{
"name": "github-markdown-css",
"version": "5.1.0",
"description": "The minimal amount of CSS to replicate the GitHub Markdown style",
"license": "MIT",
"repository": "sindresorhus/github-markdown-css",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"main": "github-markdown.css",
"scripts": {
"make:light": "github-markdown-css --type light > github-markdown-light.css",
"make:dark": "github-markdown-css --type dark > github-markdown-dark.css",
"make:auto": "github-markdown-css --type auto > github-markdown.css",
"make": "npm run make:light && npm run make:dark && npm run make:auto"
},
"files": [
"github-markdown.css",
"github-markdown-dark.css",
"github-markdown-light.css"
],
"keywords": [
"browser",
"github",
"markdown",
"md",
"css",
"style",
"stylesheet"
],
"devDependencies": {
"generate-github-markdown-css": "^5.0.1"
}
}