UNPKG

2.75 kBJSONView Raw
1{
2 "name": "marked",
3 "description": "A markdown parser built for speed",
4 "author": "Christopher Jeffrey",
5 "version": "1.2.3",
6 "main": "./src/marked.js",
7 "browser": "./lib/marked.js",
8 "bin": {
9 "marked": "bin/marked"
10 },
11 "man": "./man/marked.1",
12 "files": [
13 "bin/",
14 "lib/",
15 "src/",
16 "man/",
17 "marked.min.js"
18 ],
19 "repository": "git://github.com/markedjs/marked.git",
20 "homepage": "https://marked.js.org",
21 "bugs": {
22 "url": "http://github.com/markedjs/marked/issues"
23 },
24 "license": "MIT",
25 "keywords": [
26 "markdown",
27 "markup",
28 "html"
29 ],
30 "tags": [
31 "markdown",
32 "markup",
33 "html"
34 ],
35 "devDependencies": {
36 "@babel/core": "^7.12.3",
37 "@babel/preset-env": "^7.12.1",
38 "@markedjs/html-differ": "^3.0.3",
39 "@semantic-release/commit-analyzer": "^8.0.1",
40 "@semantic-release/git": "^9.0.0",
41 "@semantic-release/github": "^7.1.1",
42 "@semantic-release/npm": "^7.0.6",
43 "@semantic-release/release-notes-generator": "^9.0.1",
44 "cheerio": "^1.0.0-rc.3",
45 "commonmark": "0.29.2",
46 "eslint": "^7.12.1",
47 "eslint-config-standard": "^14.1.1",
48 "eslint-plugin-import": "^2.22.1",
49 "eslint-plugin-node": "^11.1.0",
50 "eslint-plugin-promise": "^4.2.1",
51 "eslint-plugin-standard": "^4.0.2",
52 "front-matter": "^4.0.2",
53 "highlight.js": "^10.3.2",
54 "jasmine": "^3.6.3",
55 "markdown-it": "12.0.2",
56 "node-fetch": "^2.6.1",
57 "rollup": "^2.33.0",
58 "rollup-plugin-babel": "^4.4.0",
59 "rollup-plugin-commonjs": "^10.1.0",
60 "rollup-plugin-license": "^2.2.0",
61 "semantic-release": "^17.2.1",
62 "titleize": "^2.1.0",
63 "uglify-js": "^3.11.4",
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": ">= 8.16.2"
88 }
89}