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-03-23 11:51:20 +00:00
|
|
|
"version": "0.3.19",
|
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-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": {
|
2018-01-20 01:57:26 +00:00
|
|
|
"eslint": "^4.15.0",
|
|
|
|
"eslint-config-standard": "^11.0.0-beta.0",
|
2018-02-02 05:10:15 +00:00
|
|
|
"eslint-plugin-import": "^2.8.0",
|
2018-01-20 01:57:26 +00:00
|
|
|
"eslint-plugin-node": "^5.2.1",
|
2018-02-02 05:10:15 +00:00
|
|
|
"eslint-plugin-promise": "^3.6.0",
|
2018-01-20 01:57:26 +00:00
|
|
|
"eslint-plugin-standard": "^3.0.1",
|
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",
|
2018-04-05 20:16:20 +00:00
|
|
|
"html-differ": "^1.3.4",
|
2018-03-03 07:00:29 +00:00
|
|
|
"jasmine": "^3.1.0",
|
2018-04-05 20:16:20 +00:00
|
|
|
"jasmine2-custom-message": "^0.9.0",
|
2018-02-02 05:10:15 +00:00
|
|
|
"markdown": "*",
|
|
|
|
"markdown-it": "*",
|
2018-02-09 04:28:28 +00:00
|
|
|
"showdown": "*",
|
2018-02-08 19:15:53 +00:00
|
|
|
"uglify-js": "^3.3.10"
|
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-04-10 03:59:01 +00:00
|
|
|
"test:cm": "npm test -- test/specs/commonmark/**/*-spec.js",
|
2018-04-10 13:17:32 +00:00
|
|
|
"test:gfm": "npm test -- test/specs/gfm/**/*-spec.js",
|
2018-03-04 06:47:02 +00:00
|
|
|
"test:old": "node test",
|
2018-03-29 16:41:33 +00:00
|
|
|
"test:lint": "eslint bin/marked .",
|
2018-02-08 19:15:53 +00:00
|
|
|
"bench": "node test --bench",
|
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
|
|
|
}
|