marked/package.json

70 lines
2.1 KiB
JSON
Raw Normal View History

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-02-18 19:03:00 +00:00
"version": "0.6.1",
2011-07-24 13:15:35 +00:00
"main": "./lib/marked.js",
"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
},
"license": "MIT",
2017-12-01 16:23:27 +00:00
"keywords": [
"markdown",
"markup",
"html"
],
"tags": [
"markdown",
"markup",
"html"
],
"devDependencies": {
2019-04-09 18:21:20 +00:00
"@markedjs/html-differ": "^2.0.1",
"commonmark": "0.x",
2019-03-11 16:16:52 +00:00
"eslint": "^5.15.1",
"eslint-config-standard": "^12.0.0",
2019-03-11 16:16:52 +00:00
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vuln-regex-detector": "^1.0.4",
"front-matter": "^3.0.1",
"glob-to-regexp": "^0.4.0",
"jasmine": "^3.3.1",
"markdown": "0.x",
"markdown-it": "8.x",
2019-04-09 18:21:20 +00:00
"request": "^2.88.0",
"request-promise": "^4.2.4",
"uglify-js": "^3.4.9"
},
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-04-15 17:08:01 +00:00
"test:marked": "npm test -- test/specs/marked/**/*-spec.js",
2018-03-04 06:47:02 +00:00
"test:old": "node test",
"test:lint": "eslint bin/marked .",
"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",
"bench": "node test --bench",
"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
}