marked/package.json

38 lines
780 B
JSON
Raw Normal View History

2011-07-24 08:15:35 -05:00
{
"name": "marked",
2011-08-24 11:38:27 -05:00
"description": "A markdown parser built for speed",
2011-07-24 08:15:35 -05:00
"author": "Christopher Jeffrey",
2017-12-01 11:23:34 -05:00
"version": "0.3.9",
2011-07-24 08:15:35 -05:00
"main": "./lib/marked.js",
"bin": "./bin/marked",
"man": "./man/marked.1",
2011-07-24 08:15:35 -05:00
"repository": "git://github.com/chjj/marked.git",
"homepage": "https://github.com/chjj/marked",
2017-12-01 11:23:27 -05:00
"bugs": {
"url": "http://github.com/chjj/marked/issues"
},
"license": "MIT",
2017-12-01 11:23:27 -05:00
"keywords": [
"markdown",
"markup",
"html"
],
"tags": [
"markdown",
"markup",
"html"
],
"devDependencies": {
"markdown": "*",
"showdown": "*",
2018-01-06 01:11:16 -06:00
"front-matter": "^2.3.0",
"gulp": "^3.8.11",
"gulp-uglify": "^1.1.0",
"gulp-concat": "^2.5.2"
},
2017-12-01 11:23:27 -05:00
"scripts": {
"test": "node test",
"bench": "node test --bench"
}
2011-08-10 21:50:25 -05:00
}