UNPKG

2.49 kBJSONView Raw
1{
2 "name": "marked",
3 "description": "A markdown parser built for speed",
4 "author": "Christopher Jeffrey",
5 "version": "1.2.0",
6 "main": "./src/marked.js",
7 "browser": "./lib/marked.js",
8 "bin": "./bin/marked",
9 "man": "./man/marked.1",
10 "files": [
11 "bin/",
12 "lib/",
13 "src/",
14 "man/",
15 "marked.min.js"
16 ],
17 "repository": "git://github.com/markedjs/marked.git",
18 "homepage": "https://marked.js.org",
19 "bugs": {
20 "url": "http://github.com/markedjs/marked/issues"
21 },
22 "license": "MIT",
23 "keywords": [
24 "markdown",
25 "markup",
26 "html"
27 ],
28 "tags": [
29 "markdown",
30 "markup",
31 "html"
32 ],
33 "devDependencies": {
34 "@babel/core": "^7.10.4",
35 "@babel/preset-env": "^7.10.4",
36 "@markedjs/html-differ": "^3.0.2",
37 "cheerio": "^1.0.0-rc.3",
38 "commonmark": "0.29.1",
39 "eslint": "^7.4.0",
40 "eslint-config-standard": "^14.1.1",
41 "eslint-plugin-import": "^2.22.0",
42 "eslint-plugin-node": "^11.1.0",
43 "eslint-plugin-promise": "^4.2.1",
44 "eslint-plugin-standard": "^4.0.1",
45 "front-matter": "^4.0.2",
46 "highlight.js": "^10.1.2",
47 "jasmine": "^3.5.0",
48 "markdown": "0.5.x",
49 "markdown-it": "11.x",
50 "node-fetch": "^2.6.0",
51 "rollup": "^2.21.0",
52 "rollup-plugin-babel": "^4.4.0",
53 "rollup-plugin-commonjs": "^10.1.0",
54 "rollup-plugin-license": "^2.1.0",
55 "titleize": "^2.1.0",
56 "uglify-js": "^3.10.0",
57 "vuln-regex-detector": "^1.3.0"
58 },
59 "scripts": {
60 "test": "jasmine --config=jasmine.json",
61 "test:all": "npm test && npm run test:lint",
62 "test:unit": "npm test -- test/unit/**/*-spec.js",
63 "test:specs": "npm test -- test/specs/**/*-spec.js",
64 "test:lint": "eslint bin/marked .",
65 "test:redos": "node test/vuln-regex.js",
66 "test:update": "node test/update-specs.js",
67 "rules": "node test/rules.js",
68 "bench": "npm run rollup && node test/bench.js",
69 "lint": "eslint --fix bin/marked .",
70 "build:reset": "git checkout upstream/master lib/marked.js lib/marked.esm.js marked.min.js",
71 "build": "npm run rollup && npm run minify",
72 "build:docs": "node build-docs.js",
73 "rollup": "npm run rollup:umd && npm run rollup:esm",
74 "rollup:umd": "rollup -c rollup.config.js",
75 "rollup:esm": "rollup -c rollup.config.esm.js",
76 "minify": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js",
77 "preversion": "npm run build && (git diff --quiet || git commit -am build)"
78 },
79 "engines": {
80 "node": ">= 8.16.2"
81 }
82}