github-markdown-css/package.json

55 lines
1.0 KiB
JSON
Raw Normal View History

2014-05-08 02:02:46 +08:00
{
"name": "github-markdown-css",
2014-06-23 01:10:49 +08:00
"version": "0.2.0",
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",
"bin": {
"github-markdown-css": "cli.js"
},
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
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",
2014-06-11 04:26:15 +08:00
"got": "^0.3.0",
2014-05-08 02:02:46 +08:00
"temp-write": "^0.3.0",
"uncss": "^0.8.1"
},
"devDependencies": {
"mocha": "*"
}
}