package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "marked",
  3. "description": "A markdown parser built for speed",
  4. "author": "Christopher Jeffrey",
  5. "version": "0.6.2",
  6. "main": "./lib/marked.js",
  7. "bin": "./bin/marked",
  8. "man": "./man/marked.1",
  9. "files": [
  10. "bin/",
  11. "lib/",
  12. "man/",
  13. "marked.min.js"
  14. ],
  15. "repository": "git://github.com/markedjs/marked.git",
  16. "homepage": "https://marked.js.org",
  17. "bugs": {
  18. "url": "http://github.com/markedjs/marked/issues"
  19. },
  20. "license": "MIT",
  21. "keywords": [
  22. "markdown",
  23. "markup",
  24. "html"
  25. ],
  26. "tags": [
  27. "markdown",
  28. "markup",
  29. "html"
  30. ],
  31. "devDependencies": {
  32. "@markedjs/html-differ": "^2.0.1",
  33. "cheerio": "^1.0.0-rc.3",
  34. "commonmark": "0.x",
  35. "eslint": "^5.15.1",
  36. "eslint-config-standard": "^12.0.0",
  37. "eslint-plugin-import": "^2.16.0",
  38. "eslint-plugin-node": "^8.0.1",
  39. "eslint-plugin-promise": "^4.0.1",
  40. "eslint-plugin-standard": "^4.0.0",
  41. "eslint-plugin-vuln-regex-detector": "^1.0.4",
  42. "front-matter": "^3.0.1",
  43. "glob-to-regexp": "^0.4.0",
  44. "jasmine": "^3.3.1",
  45. "markdown": "0.x",
  46. "markdown-it": "8.x",
  47. "node-fetch": "^2.3.0",
  48. "uglify-js": "^3.4.9"
  49. },
  50. "scripts": {
  51. "test": "jasmine --config=jasmine.json",
  52. "test:unit": "npm test -- test/unit/**/*-spec.js",
  53. "test:specs": "npm test -- test/specs/**/*-spec.js",
  54. "test:cm": "npm test -- test/specs/commonmark/**/*-spec.js",
  55. "test:gfm": "npm test -- test/specs/gfm/**/*-spec.js",
  56. "test:marked": "npm test -- test/specs/marked/**/*-spec.js",
  57. "test:old": "node test",
  58. "test:lint": "eslint bin/marked .",
  59. "test:redos": "eslint --plugin vuln-regex-detector --rule '\"vuln-regex-detector/no-vuln-regex\": 2' lib/marked.js",
  60. "test:node4": "npx node@4 ./node_modules/jasmine/bin/jasmine.js --config=jasmine.json",
  61. "bench": "node test --bench",
  62. "lint": "eslint --fix bin/marked .",
  63. "build": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js",
  64. "preversion": "npm run build && (git diff --quiet || git commit -am 'minify')"
  65. },
  66. "engines": {
  67. "node": ">=0.10.0"
  68. }
  69. }