This commit is contained in:
Josh Bruce 2017-12-01 12:54:48 -05:00
parent 635e45cc68
commit 753a7bd04a

View File

@ -2,17 +2,27 @@
"name": "marked", "name": "marked",
"description": "A markdown parser built for speed", "description": "A markdown parser built for speed",
"author": "Christopher Jeffrey", "author": "Christopher Jeffrey",
"version": "0.3.6", "version": "0.3.7",
"main": "./lib/marked.js", "main": "./lib/marked.js",
"bin": "./bin/marked", "bin": "./bin/marked",
"man": "./man/marked.1", "man": "./man/marked.1",
"preferGlobal": true, "preferGlobal": true,
"repository": "git://github.com/chjj/marked.git", "repository": "git://github.com/chjj/marked.git",
"homepage": "https://github.com/chjj/marked", "homepage": "https://github.com/chjj/marked",
"bugs": { "url": "http://github.com/chjj/marked/issues" }, "bugs": {
"url": "http://github.com/chjj/marked/issues"
},
"license": "MIT", "license": "MIT",
"keywords": ["markdown", "markup", "html"], "keywords": [
"tags": ["markdown", "markup", "html"], "markdown",
"markup",
"html"
],
"tags": [
"markdown",
"markup",
"html"
],
"devDependencies": { "devDependencies": {
"markdown": "*", "markdown": "*",
"showdown": "*", "showdown": "*",
@ -20,5 +30,8 @@
"gulp-uglify": "^1.1.0", "gulp-uglify": "^1.1.0",
"gulp-concat": "^2.5.2" "gulp-concat": "^2.5.2"
}, },
"scripts": { "test": "node test", "bench": "node test --bench" } "scripts": {
"test": "node test",
"bench": "node test --bench"
}
} }