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",
|
2019-07-05 10:46:56 -05:00
|
|
|
"version": "0.7.0",
|
2019-11-06 11:11:06 -06:00
|
|
|
"main": "./src/marked.js",
|
2012-01-27 15:53:57 -06:00
|
|
|
"bin": "./bin/marked",
|
|
|
|
"man": "./man/marked.1",
|
2018-10-28 18:27:11 -04:00
|
|
|
"files": [
|
|
|
|
"bin/",
|
|
|
|
"lib/",
|
|
|
|
"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": {
|
2019-11-05 15:30:38 -06:00
|
|
|
"@babel/core": "^7.7.0",
|
|
|
|
"@babel/preset-env": "^7.7.1",
|
2019-08-27 13:55:53 -05:00
|
|
|
"@markedjs/html-differ": "^3.0.0",
|
2019-04-12 10:29:36 -05:00
|
|
|
"cheerio": "^1.0.0-rc.3",
|
2019-08-27 13:55:53 -05:00
|
|
|
"commonmark": "0.29.x",
|
2019-11-05 15:30:38 -06:00
|
|
|
"eslint": "^6.6.0",
|
2019-08-30 13:47:55 -05:00
|
|
|
"eslint-config-standard": "^14.1.0",
|
2019-08-27 13:21:28 -05:00
|
|
|
"eslint-plugin-import": "^2.18.2",
|
2019-08-27 13:55:53 -05:00
|
|
|
"eslint-plugin-node": "^10.0.0",
|
2019-07-02 16:28:17 -05:00
|
|
|
"eslint-plugin-promise": "^4.2.1",
|
2019-08-27 13:21:28 -05:00
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2018-04-15 17:18:43 -04:00
|
|
|
"eslint-plugin-vuln-regex-detector": "^1.0.4",
|
2019-04-17 22:48:11 +08:00
|
|
|
"front-matter": "^3.0.2",
|
2019-09-20 21:50:15 -05:00
|
|
|
"jasmine": "^3.5.0",
|
2019-08-27 13:55:53 -05:00
|
|
|
"markdown": "0.5.x",
|
|
|
|
"markdown-it": "10.x",
|
2019-07-02 16:28:17 -05:00
|
|
|
"node-fetch": "^2.6.0",
|
2019-11-05 15:30:38 -06:00
|
|
|
"rollup": "^1.26.3",
|
|
|
|
"rollup-plugin-babel": "^4.3.3",
|
2019-11-06 11:11:06 -06:00
|
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
2019-11-06 11:54:31 -06:00
|
|
|
"rollup-plugin-license": "^0.12.1",
|
2019-11-06 11:11:06 -06:00
|
|
|
"uglify-js": "^3.6.8"
|
2013-03-01 17:25:28 +08:00
|
|
|
},
|
2017-12-01 11:23:27 -05:00
|
|
|
"scripts": {
|
2019-11-05 15:30:38 -06:00
|
|
|
"test": "npm run build && jasmine --config=jasmine.json",
|
|
|
|
"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 11:11:06 -06:00
|
|
|
"test:redos": "npm run rollup && eslint --plugin vuln-regex-detector --rule '\"vuln-regex-detector/no-vuln-regex\": 2' --no-ignore lib/marked.js",
|
2019-04-25 13:17:01 -05:00
|
|
|
"test:update": "node test/update-specs.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 12:05:09 -06:00
|
|
|
"build:reset": "git checkout upstream/master lib/marked.js marked.min.js",
|
2019-11-05 15:30:38 -06:00
|
|
|
"build": "npm run rollup && npm run minify",
|
|
|
|
"rollup": "rollup -c rollup.config.js",
|
|
|
|
"minify": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js",
|
|
|
|
"preversion": "npm run build && (git diff --quiet || git commit -am 'build')"
|
2018-02-11 14:19:29 +01:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=0.10.0"
|
2017-12-01 11:23:27 -05:00
|
|
|
}
|
2011-08-10 21:50:25 -05:00
|
|
|
}
|