marked/package.json

39 lines
879 B
JSON
Raw Normal View History

2011-07-24 13:15:35 +00:00
{
"name": "marked",
2011-08-24 16:38:27 +00:00
"description": "A markdown parser built for speed",
2011-07-24 13:15:35 +00:00
"author": "Christopher Jeffrey",
2018-02-19 04:26:02 +00:00
"version": "0.3.15",
2011-07-24 13:15:35 +00:00
"main": "./lib/marked.js",
"bin": "./bin/marked",
"man": "./man/marked.1",
2018-02-15 18:24:49 +00:00
"repository": "git://github.com/markedjs/marked.git",
"homepage": "https://github.com/markedjs/marked",
2017-12-01 16:23:27 +00:00
"bugs": {
2018-02-15 18:24:49 +00:00
"url": "http://github.com/markedjs/marked/issues"
2017-12-01 16:23:27 +00:00
},
"license": "MIT",
2017-12-01 16:23:27 +00:00
"keywords": [
"markdown",
"markup",
"html"
],
"tags": [
"markdown",
"markup",
"html"
],
"devDependencies": {
"markdown": "*",
"showdown": "*",
2018-01-06 07:44:10 +00:00
"markdown-it": "*",
2018-01-06 07:11:16 +00:00
"front-matter": "^2.3.0",
2018-01-07 17:25:24 +00:00
"glob-to-regexp": "0.3.0",
"uglify-js": "^3.3.10"
},
2017-12-01 16:23:27 +00:00
"scripts": {
"test": "node test",
"bench": "node test --bench",
"build": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js"
2017-12-01 16:23:27 +00:00
}
2011-08-11 02:50:25 +00:00
}