UNPKG

1.91 kBJSONView Raw
1{
2 "name": "marked",
3 "description": "A markdown parser built for speed",
4 "author": "Christopher Jeffrey",
5 "version": "0.7.0",
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.16.0",
36 "eslint-config-standard": "^12.0.0",
37 "eslint-plugin-import": "^2.17.2",
38 "eslint-plugin-node": "^8.0.1",
39 "eslint-plugin-promise": "^4.1.1",
40 "eslint-plugin-standard": "^4.0.0",
41 "eslint-plugin-vuln-regex-detector": "^1.0.4",
42 "front-matter": "^3.0.2",
43 "jasmine": "^3.4.0",
44 "markdown": "0.x",
45 "markdown-it": "8.x",
46 "node-fetch": "^2.3.0",
47 "uglify-js": "^3.5.8"
48 },
49 "scripts": {
50 "test": "jasmine --config=jasmine.json",
51 "test:unit": "npm test -- test/unit/**/*-spec.js",
52 "test:specs": "npm test -- test/specs/**/*-spec.js",
53 "test:lint": "eslint bin/marked .",
54 "test:redos": "eslint --plugin vuln-regex-detector --rule '\"vuln-regex-detector/no-vuln-regex\": 2' lib/marked.js",
55 "test:node4": "npx node@4 ./node_modules/jasmine/bin/jasmine.js --config=jasmine.json",
56 "test:update": "node test/update-specs.js",
57 "bench": "node test/bench.js",
58 "lint": "eslint --fix bin/marked .",
59 "build": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js",
60 "preversion": "npm run build && (git diff --quiet || git commit -am 'minify')"
61 },
62 "engines": {
63 "node": ">=0.10.0"
64 }
65}