73 lines
2.1 KiB
JSON
73 lines
2.1 KiB
JSON
{
|
|
"name": "marked",
|
|
"description": "A markdown parser built for speed",
|
|
"author": "Christopher Jeffrey",
|
|
"version": "0.7.0",
|
|
"main": "./lib/marked.js",
|
|
"module": "./src/marked.js",
|
|
"bin": "./bin/marked",
|
|
"man": "./man/marked.1",
|
|
"files": [
|
|
"bin/",
|
|
"lib/",
|
|
"man/",
|
|
"marked.min.js"
|
|
],
|
|
"repository": "git://github.com/markedjs/marked.git",
|
|
"homepage": "https://marked.js.org",
|
|
"bugs": {
|
|
"url": "http://github.com/markedjs/marked/issues"
|
|
},
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"markdown",
|
|
"markup",
|
|
"html"
|
|
],
|
|
"tags": [
|
|
"markdown",
|
|
"markup",
|
|
"html"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/core": "^7.7.0",
|
|
"@babel/preset-env": "^7.7.1",
|
|
"@markedjs/html-differ": "^3.0.0",
|
|
"cheerio": "^1.0.0-rc.3",
|
|
"commonmark": "0.29.x",
|
|
"eslint": "^6.6.0",
|
|
"eslint-config-standard": "^14.1.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-node": "^10.0.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"eslint-plugin-vuln-regex-detector": "^1.0.4",
|
|
"front-matter": "^3.0.2",
|
|
"jasmine": "^3.5.0",
|
|
"markdown": "0.5.x",
|
|
"markdown-it": "10.x",
|
|
"node-fetch": "^2.6.0",
|
|
"rollup": "^1.26.3",
|
|
"rollup-plugin-babel": "^4.3.3",
|
|
"uglify-js": "^3.6.7"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run build && jasmine --config=jasmine.json",
|
|
"test:all": "npm test && npm run test:lint",
|
|
"test:unit": "npm test -- test/unit/**/*-spec.js",
|
|
"test:specs": "npm test -- test/specs/**/*-spec.js",
|
|
"test:lint": "eslint bin/marked .",
|
|
"test:redos": "eslint --plugin vuln-regex-detector --rule '\"vuln-regex-detector/no-vuln-regex\": 2' lib/marked.js",
|
|
"test:update": "node test/update-specs.js",
|
|
"bench": "node test/bench.js",
|
|
"lint": "eslint --fix bin/marked .",
|
|
"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')"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
}
|
|
}
|