UNPKG

2.74 kBJSONView Raw
1{
2 "name": "marked",
3 "description": "A markdown parser built for speed",
4 "author": "Christopher Jeffrey",
5 "version": "3.0.1",
6 "main": "./src/marked.js",
7 "module": "./lib/marked.esm.js",
8 "browser": "./lib/marked.js",
9 "bin": {
10 "marked": "bin/marked"
11 },
12 "man": "./man/marked.1",
13 "files": [
14 "bin/",
15 "lib/",
16 "src/",
17 "man/",
18 "marked.min.js"
19 ],
20 "repository": "git://github.com/markedjs/marked.git",
21 "homepage": "https://marked.js.org",
22 "bugs": {
23 "url": "http://github.com/markedjs/marked/issues"
24 },
25 "license": "MIT",
26 "keywords": [
27 "markdown",
28 "markup",
29 "html"
30 ],
31 "tags": [
32 "markdown",
33 "markup",
34 "html"
35 ],
36 "devDependencies": {
37 "@babel/core": "^7.15.0",
38 "@babel/preset-env": "^7.15.0",
39 "@markedjs/html-differ": "^3.0.4",
40 "@rollup/plugin-babel": "^5.3.0",
41 "@rollup/plugin-commonjs": "^20.0.0",
42 "@semantic-release/commit-analyzer": "^8.0.1",
43 "@semantic-release/git": "^9.0.0",
44 "@semantic-release/github": "^7.2.3",
45 "@semantic-release/npm": "^7.1.3",
46 "@semantic-release/release-notes-generator": "^9.0.3",
47 "cheerio": "^1.0.0-rc.10",
48 "commonmark": "0.30.0",
49 "eslint": "^7.32.0",
50 "eslint-config-standard": "^16.0.3",
51 "eslint-plugin-import": "^2.24.1",
52 "eslint-plugin-node": "^11.1.0",
53 "eslint-plugin-promise": "^5.1.0",
54 "front-matter": "^4.0.2",
55 "highlight.js": "^11.2.0",
56 "jasmine": "^3.9.0",
57 "markdown-it": "12.2.0",
58 "node-fetch": "^2.6.1",
59 "rollup": "^2.56.3",
60 "rollup-plugin-license": "^2.5.0",
61 "semantic-release": "^17.4.5",
62 "titleize": "^2.1.0",
63 "uglify-js": "^3.14.1",
64 "vuln-regex-detector": "^1.3.0"
65 },
66 "scripts": {
67 "test": "jasmine --config=jasmine.json",
68 "test:all": "npm test && npm run test:lint",
69 "test:unit": "npm test -- test/unit/**/*-spec.js",
70 "test:specs": "npm test -- test/specs/**/*-spec.js",
71 "test:lint": "eslint bin/marked .",
72 "test:redos": "node test/vuln-regex.js",
73 "test:update": "node test/update-specs.js",
74 "rules": "node test/rules.js",
75 "bench": "npm run rollup && node test/bench.js",
76 "lint": "eslint --fix bin/marked .",
77 "build:reset": "git checkout upstream/master lib/marked.js lib/marked.esm.js marked.min.js",
78 "build": "npm run rollup && npm run minify",
79 "build:docs": "node build-docs.js",
80 "rollup": "npm run rollup:umd && npm run rollup:esm",
81 "rollup:umd": "rollup -c rollup.config.js",
82 "rollup:esm": "rollup -c rollup.config.esm.js",
83 "minify": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js",
84 "preversion": "npm run build && (git diff --quiet || git commit -am build)"
85 },
86 "engines": {
87 "node": ">= 12"
88 }
89}