-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
package.json
40 lines (40 loc) · 1.02 KB
/
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
38
39
40
{
"name": "github-markdown-css",
"version": "5.7.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": "[email protected]",
"url": "https://sindresorhus.com"
},
"main": "github-markdown.css",
"engines": {
"node": ">=10"
},
"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": "^6.4.0"
}
}