github-markdown-css/package.json

54 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2014-05-08 02:02:46 +08:00
{
"name": "github-markdown-css",
2014-09-01 07:14:13 +08:00
"version": "1.1.1",
2014-05-08 02:02:46 +08:00
"description": "The minimal amount of CSS to replicate the GitHub Markdown style",
"license": "MIT",
"repository": "sindresorhus/github-markdown-css",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
2014-08-19 07:14:43 +08:00
"bin": {
"github-markdown-css": "cli.js"
},
2014-06-23 01:10:18 +08:00
"contributors": [
{
"name": "Benjamin Tan",
"email": "demoneaux@gmail.com",
"url": "http://d10.github.io/"
}
],
2014-05-08 02:02:46 +08:00
"engines": {
"node": ">=0.10.0"
},
"scripts": {
2014-06-23 00:40:50 +08:00
"test": "mocha",
"generate": "node cli.js !> github-markdown.css"
2014-05-08 02:02:46 +08:00
},
"files": [
"index.js",
"cli.js",
"github-markdown.css"
],
"keywords": [
"cli",
"bin",
"github",
"markdown",
"md",
"css",
"style",
"stylesheet"
],
"dependencies": {
2014-06-23 01:10:18 +08:00
"cheerio": "^0.17.0",
"css": "^2.0.0",
"got": "^1.0.0",
2014-08-05 16:11:08 +08:00
"uncss": "^0.8.3"
2014-05-08 02:02:46 +08:00
},
"devDependencies": {
"mocha": "*"
}
}