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",
|
2019-03-08 23:02:27 +00:00
|
|
|
"version": "0.6.2",
|
2011-07-24 13:15:35 +00:00
|
|
|
"main": "./lib/marked.js",
|
2012-01-27 21:53:57 +00:00
|
|
|
"bin": "./bin/marked",
|
|
|
|
"man": "./man/marked.1",
|
2018-10-28 22:27:11 +00:00
|
|
|
"files": [
|
|
|
|
"bin/",
|
|
|
|
"lib/",
|
|
|
|
"man/",
|
|
|
|
"marked.min.js"
|
|
|
|
],
|
2018-02-15 18:24:49 +00:00
|
|
|
"repository": "git://github.com/markedjs/marked.git",
|
2018-03-22 16:33:05 +00:00
|
|
|
"homepage": "https://marked.js.org",
|
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
|
|
|
},
|
2013-12-29 00:09:34 +00:00
|
|
|
"license": "MIT",
|
2017-12-01 16:23:27 +00:00
|
|
|
"keywords": [
|
|
|
|
"markdown",
|
|
|
|
"markup",
|
|
|
|
"html"
|
|
|
|
],
|
|
|
|
"tags": [
|
|
|
|
"markdown",
|
|
|
|
"markup",
|
|
|
|
"html"
|
|
|
|
],
|
2013-03-01 09:25:28 +00:00
|
|
|
"devDependencies": {
|
2019-04-09 18:21:20 +00:00
|
|
|
"@markedjs/html-differ": "^2.0.1",
|
2019-04-12 15:29:36 +00:00
|
|
|
"cheerio": "^1.0.0-rc.3",
|
2019-04-17 14:58:55 +00:00
|
|
|
"commonmark": "0.x",
|
2019-04-17 14:48:11 +00:00
|
|
|
"eslint": "^5.16.0",
|
2019-01-13 18:27:35 +00:00
|
|
|
"eslint-config-standard": "^12.0.0",
|
2019-04-17 14:48:11 +00:00
|
|
|
"eslint-plugin-import": "^2.17.2",
|
2019-01-13 18:27:35 +00:00
|
|
|
"eslint-plugin-node": "^8.0.1",
|
2019-04-17 14:48:11 +00:00
|
|
|
"eslint-plugin-promise": "^4.1.1",
|
2019-01-13 18:27:35 +00:00
|
|
|
"eslint-plugin-standard": "^4.0.0",
|
2018-04-15 21:18:43 +00:00
|
|
|
"eslint-plugin-vuln-regex-detector": "^1.0.4",
|
2019-04-17 14:48:11 +00:00
|
|
|
"front-matter": "^3.0.2",
|
|
|
|
"jasmine": "^3.4.0",
|
2018-08-30 13:02:28 +00:00
|
|
|
"markdown": "0.x",
|
|
|
|
"markdown-it": "8.x",
|
2019-04-09 19:35:02 +00:00
|
|
|
"node-fetch": "^2.3.0",
|
2019-04-25 15:26:17 +00:00
|
|
|
"uglify-js": "^3.5.8"
|
2013-03-01 09:25:28 +00:00
|
|
|
},
|
2017-12-01 16:23:27 +00:00
|
|
|
"scripts": {
|
2018-03-04 06:47:02 +00:00
|
|
|
"test": "jasmine --config=jasmine.json",
|
|
|
|
"test:unit": "npm test -- test/unit/**/*-spec.js",
|
|
|
|
"test:specs": "npm test -- test/specs/**/*-spec.js",
|
2018-03-29 16:41:33 +00:00
|
|
|
"test:lint": "eslint bin/marked .",
|
2018-04-15 21:18:43 +00:00
|
|
|
"test:redos": "eslint --plugin vuln-regex-detector --rule '\"vuln-regex-detector/no-vuln-regex\": 2' lib/marked.js",
|
2019-03-11 16:16:52 +00:00
|
|
|
"test:node4": "npx node@4 ./node_modules/jasmine/bin/jasmine.js --config=jasmine.json",
|
2019-04-25 18:17:01 +00:00
|
|
|
"test:update": "node test/update-specs.js",
|
2019-04-25 12:47:23 +00:00
|
|
|
"bench": "node test/bench.js",
|
2018-03-29 16:41:33 +00:00
|
|
|
"lint": "eslint --fix bin/marked .",
|
2018-02-19 20:42:20 +00:00
|
|
|
"build": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js",
|
2018-02-25 16:44:10 +00:00
|
|
|
"preversion": "npm run build && (git diff --quiet || git commit -am 'minify')"
|
2018-02-11 13:19:29 +00:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=0.10.0"
|
2017-12-01 16:23:27 +00:00
|
|
|
}
|
2011-08-11 02:50:25 +00:00
|
|
|
}
|