UNPKG

2 kBJSONView Raw
1{
2 "name": "marked",
3 "description": "A markdown parser built for speed",
4 "author": "Christopher Jeffrey",
5 "version": "0.5.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 "commonmark": "0.x",
33 "eslint": "^4.19.1",
34 "eslint-config-standard": "^11.0.0",
35 "eslint-plugin-import": "^2.14.0",
36 "eslint-plugin-node": "^5.2.1",
37 "eslint-plugin-promise": "^3.8.0",
38 "eslint-plugin-standard": "^3.1.0",
39 "eslint-plugin-vuln-regex-detector": "^1.0.4",
40 "front-matter": "^2.3.0",
41 "glob-to-regexp": "0.3.0",
42 "@markedjs/html-differ": "^2.0.0",
43 "jasmine": "^3.2.0",
44 "jasmine2-custom-message": "^0.9.3",
45 "markdown": "0.x",
46 "markdown-it": "8.x",
47 "uglify-js": "^3.4.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:cm": "npm test -- test/specs/commonmark/**/*-spec.js",
54 "test:gfm": "npm test -- test/specs/gfm/**/*-spec.js",
55 "test:marked": "npm test -- test/specs/marked/**/*-spec.js",
56 "test:old": "node test",
57 "test:lint": "eslint bin/marked .",
58 "test:redos": "eslint --plugin vuln-regex-detector --rule '\"vuln-regex-detector/no-vuln-regex\": 2' lib/marked.js",
59 "bench": "node test --bench",
60 "lint": "eslint --fix bin/marked .",
61 "build": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js",
62 "preversion": "npm run build && (git diff --quiet || git commit -am 'minify')"
63 },
64 "engines": {
65 "node": ">=0.10.0"
66 }
67}