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",
|
2021-08-25 02:25:19 +00:00
|
|
|
"version": "3.0.2",
|
2019-11-06 11:11:06 -06:00
|
|
|
"main": "./src/marked.js",
|
2021-08-04 14:34:34 -07:00
|
|
|
"module": "./lib/marked.esm.js",
|
2020-05-02 01:23:24 -05:00
|
|
|
"browser": "./lib/marked.js",
|
2020-10-21 09:50:40 -05:00
|
|
|
"bin": {
|
|
|
|
"marked": "bin/marked"
|
|
|
|
},
|
2012-01-27 15:53:57 -06:00
|
|
|
"man": "./man/marked.1",
|
2018-10-28 18:27:11 -04:00
|
|
|
"files": [
|
|
|
|
"bin/",
|
|
|
|
"lib/",
|
2019-11-06 14:57:24 -06:00
|
|
|
"src/",
|
2018-10-28 18:27:11 -04:00
|
|
|
"man/",
|
|
|
|
"marked.min.js"
|
|
|
|
],
|
2018-02-15 13:24:49 -05:00
|
|
|
"repository": "git://github.com/markedjs/marked.git",
|
2018-03-22 12:33:05 -04:00
|
|
|
"homepage": "https://marked.js.org",
|
2017-12-01 11:23:27 -05:00
|
|
|
"bugs": {
|
2018-02-15 13:24:49 -05:00
|
|
|
"url": "http://github.com/markedjs/marked/issues"
|
2017-12-01 11:23:27 -05:00
|
|
|
},
|
2013-12-28 16:09:34 -08:00
|
|
|
"license": "MIT",
|
2017-12-01 11:23:27 -05:00
|
|
|
"keywords": [
|
|
|
|
"markdown",
|
|
|
|
"markup",
|
|
|
|
"html"
|
|
|
|
],
|
|
|
|
"tags": [
|
|
|
|
"markdown",
|
|
|
|
"markup",
|
|
|
|
"html"
|
|
|
|
],
|
2013-03-01 17:25:28 +08:00
|
|
|
"devDependencies": {
|
2021-09-06 11:53:35 -05:00
|
|
|
"@babel/core": "^7.15.5",
|
2021-08-15 22:04:05 -05:00
|
|
|
"@babel/preset-env": "^7.15.0",
|
2020-11-16 00:11:17 -06:00
|
|
|
"@markedjs/html-differ": "^3.0.4",
|
2021-02-15 09:50:34 -06:00
|
|
|
"@rollup/plugin-babel": "^5.3.0",
|
2021-08-02 10:19:03 -05:00
|
|
|
"@rollup/plugin-commonjs": "^20.0.0",
|
2020-10-21 08:21:12 -05:00
|
|
|
"@semantic-release/commit-analyzer": "^8.0.1",
|
|
|
|
"@semantic-release/git": "^9.0.0",
|
2021-05-10 00:25:00 -05:00
|
|
|
"@semantic-release/github": "^7.2.3",
|
2021-05-10 00:28:13 -05:00
|
|
|
"@semantic-release/npm": "^7.1.3",
|
2021-06-14 00:13:45 -05:00
|
|
|
"@semantic-release/release-notes-generator": "^9.0.3",
|
2021-06-14 09:04:35 -05:00
|
|
|
"cheerio": "^1.0.0-rc.10",
|
2021-06-25 16:14:09 -04:00
|
|
|
"commonmark": "0.30.0",
|
2021-08-02 10:19:19 -05:00
|
|
|
"eslint": "^7.32.0",
|
2021-05-31 09:31:16 -05:00
|
|
|
"eslint-config-standard": "^16.0.3",
|
2021-08-30 12:57:18 -05:00
|
|
|
"eslint-plugin-import": "^2.24.2",
|
2020-04-20 14:06:03 -05:00
|
|
|
"eslint-plugin-node": "^11.1.0",
|
2021-06-01 23:43:01 -05:00
|
|
|
"eslint-plugin-promise": "^5.1.0",
|
2020-07-13 08:48:14 -05:00
|
|
|
"front-matter": "^4.0.2",
|
2021-08-15 22:03:24 -05:00
|
|
|
"highlight.js": "^11.2.0",
|
2021-08-23 10:25:54 -05:00
|
|
|
"jasmine": "^3.9.0",
|
2021-08-15 22:04:16 -05:00
|
|
|
"markdown-it": "12.2.0",
|
2020-10-21 08:21:12 -05:00
|
|
|
"node-fetch": "^2.6.1",
|
2021-08-23 10:25:41 -05:00
|
|
|
"rollup": "^2.56.3",
|
2021-06-07 00:18:00 -05:00
|
|
|
"rollup-plugin-license": "^2.5.0",
|
2021-08-30 12:57:33 -05:00
|
|
|
"semantic-release": "^17.4.7",
|
2020-08-16 23:34:13 -04:00
|
|
|
"titleize": "^2.1.0",
|
2021-08-02 10:19:36 -05:00
|
|
|
"uglify-js": "^3.14.1",
|
2019-11-06 14:34:27 -06:00
|
|
|
"vuln-regex-detector": "^1.3.0"
|
2013-03-01 17:25:28 +08:00
|
|
|
},
|
2017-12-01 11:23:27 -05:00
|
|
|
"scripts": {
|
2019-11-06 12:15:12 -06:00
|
|
|
"test": "jasmine --config=jasmine.json",
|
2019-11-05 15:30:38 -06:00
|
|
|
"test:all": "npm test && npm run test:lint",
|
2018-03-04 00:47:02 -06:00
|
|
|
"test:unit": "npm test -- test/unit/**/*-spec.js",
|
|
|
|
"test:specs": "npm test -- test/specs/**/*-spec.js",
|
2018-03-29 11:41:33 -05:00
|
|
|
"test:lint": "eslint bin/marked .",
|
2019-11-06 14:34:27 -06:00
|
|
|
"test:redos": "node test/vuln-regex.js",
|
2019-04-25 13:17:01 -05:00
|
|
|
"test:update": "node test/update-specs.js",
|
2020-06-19 10:33:24 -05:00
|
|
|
"rules": "node test/rules.js",
|
2019-11-06 11:11:06 -06:00
|
|
|
"bench": "npm run rollup && node test/bench.js",
|
2018-03-29 11:41:33 -05:00
|
|
|
"lint": "eslint --fix bin/marked .",
|
2019-11-06 15:03:28 -06:00
|
|
|
"build:reset": "git checkout upstream/master lib/marked.js lib/marked.esm.js marked.min.js",
|
2019-11-06 14:00:06 -06:00
|
|
|
"build": "npm run rollup && npm run minify",
|
2020-08-16 23:04:05 -04:00
|
|
|
"build:docs": "node build-docs.js",
|
2019-11-06 14:00:06 -06:00
|
|
|
"rollup": "npm run rollup:umd && npm run rollup:esm",
|
|
|
|
"rollup:umd": "rollup -c rollup.config.js",
|
|
|
|
"rollup:esm": "rollup -c rollup.config.esm.js",
|
2019-11-05 15:30:38 -06:00
|
|
|
"minify": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js",
|
2020-03-22 00:28:13 -05:00
|
|
|
"preversion": "npm run build && (git diff --quiet || git commit -am build)"
|
2018-02-11 14:19:29 +01:00
|
|
|
},
|
|
|
|
"engines": {
|
2021-08-02 19:29:43 -05:00
|
|
|
"node": ">= 12"
|
2017-12-01 11:23:27 -05:00
|
|
|
}
|
2011-08-10 21:50:25 -05:00
|
|
|
}
|