UNPKG

1.58 kBJSONView Raw
1{
2 "name": "marked",
3 "description": "A markdown parser built for speed",
4 "author": "Christopher Jeffrey",
5 "version": "0.3.19",
6 "main": "./lib/marked.js",
7 "bin": "./bin/marked",
8 "man": "./man/marked.1",
9 "repository": "git://github.com/markedjs/marked.git",
10 "homepage": "https://marked.js.org",
11 "bugs": {
12 "url": "http://github.com/markedjs/marked/issues"
13 },
14 "license": "MIT",
15 "keywords": [
16 "markdown",
17 "markup",
18 "html"
19 ],
20 "tags": [
21 "markdown",
22 "markup",
23 "html"
24 ],
25 "devDependencies": {
26 "eslint": "^4.15.0",
27 "eslint-config-standard": "^11.0.0-beta.0",
28 "eslint-plugin-import": "^2.8.0",
29 "eslint-plugin-node": "^5.2.1",
30 "eslint-plugin-promise": "^3.6.0",
31 "eslint-plugin-standard": "^3.0.1",
32 "front-matter": "^2.3.0",
33 "glob-to-regexp": "0.3.0",
34 "jasmine": "^3.1.0",
35 "markdown": "*",
36 "markdown-it": "*",
37 "showdown": "*",
38 "uglify-js": "^3.3.10"
39 },
40 "scripts": {
41 "test": "jasmine --config=jasmine.json",
42 "test:unit": "npm test -- test/unit/**/*-spec.js",
43 "test:specs": "npm test -- test/specs/**/*-spec.js",
44 "test:integration": "npm test -- test/integration/**/*-spec.js",
45 "test:old": "node test",
46 "test:lint": "eslint lib/marked.js test/index.js",
47 "bench": "node test --bench",
48 "lint": "eslint --fix lib/marked.js test/index.js",
49 "build": "uglifyjs lib/marked.js -cm --comments /Copyright/ -o marked.min.js",
50 "preversion": "npm run build && (git diff --quiet || git commit -am 'minify')"
51 },
52 "engines": {
53 "node": ">=0.10.0"
54 }
55}