1 | {
|
---|
2 | "name": "remarkable",
|
---|
3 | "description": "Markdown parser, done right. 100% Commonmark support, extensions, syntax plugins, high speed - all in one.",
|
---|
4 | "version": "2.0.1",
|
---|
5 | "homepage": "https://github.com/jonschlinkert/remarkable",
|
---|
6 | "maintainers": [
|
---|
7 | "doowb <brian.woodward@sellside.com>",
|
---|
8 | "jonschlinkert <github@sellside.com>",
|
---|
9 | "Bogdan Chadkin <trysound@yandex.ru>"
|
---|
10 | ],
|
---|
11 | "contributors": [
|
---|
12 | "(https://github.com/dohliam)",
|
---|
13 | "(https://github.com/loveencounterflow)",
|
---|
14 | "(https://github.com/vyp)",
|
---|
15 | "Adam Misiorny <adam.misiorny@gmail.com> (http://bitnoi.se)",
|
---|
16 | "Akuma <ihuangwj@gmail.com> (https://github.com/akuma)",
|
---|
17 | "Alex Kocharin <alex@kocharin.ru> (https://github.com/rlidwka)",
|
---|
18 | "Amila Welihinda <amilajack@gmail.com> (http://amilawelihinda.com)",
|
---|
19 | "Brenard Cubacub (bren.me)",
|
---|
20 | "Denis Sokolov <denis@sokolov.cc> (http://sokolov.cc)",
|
---|
21 | "Eugene Sharygin (https://github.com/eush77)",
|
---|
22 | "Harry Llewelyn <advocation@gmail.com> (http://mynameisharry.com)",
|
---|
23 | "Joey Baker <joey@byjoeybaker.com> (https://byjoeybaker.com)",
|
---|
24 | "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)",
|
---|
25 | "Julian Lam <julian@nodebb.org> (https://www.nodebb.org)",
|
---|
26 | "Lucas Parry (https://github.com/lparry)",
|
---|
27 | "Luke Horvat <lukehorvat@gmail.com> (http://lukehorvat.com)",
|
---|
28 | "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com)",
|
---|
29 | "Mathias Bynens (https://mathiasbynens.be)",
|
---|
30 | "Mathieu Lemoine (https://github.com/lemoinem)",
|
---|
31 | "Matthew Mueller <mattmuelle@gmail.com> (https://standupjack.com)",
|
---|
32 | "Nik Nyby (http://nikolas.us.to)",
|
---|
33 | "Per Kristian Næss-Fladset (https://github.com/pkfladset)",
|
---|
34 | "Peter deHaan (http://about.me/peterdehaan)",
|
---|
35 | "Rome Li (https://github.com/akaroml)",
|
---|
36 | "Takezoe,Tomoaki (@sumito3478) <sumito3478@gmail.com> (https://twitter.com/sumito3478en)",
|
---|
37 | "Tom Byrer (https://github.com/tomByrer)",
|
---|
38 | "Tom MacWright <tom@macwright.org> (http://macwright.org)",
|
---|
39 | "Una Ma <maruilian11@cdnjs.com.tw> (https://github.com/maruilian11)",
|
---|
40 | "Vitaly Puzrin <vitaly@rcdesign.ru> (http://gravatar.com/puzrin)"
|
---|
41 | ],
|
---|
42 | "repository": "https://github.com/jonschlinkert/remarkable",
|
---|
43 | "bugs": {
|
---|
44 | "url": "https://github.com/jonschlinkert/remarkable/issues"
|
---|
45 | },
|
---|
46 | "license": "MIT",
|
---|
47 | "files": [
|
---|
48 | "bin",
|
---|
49 | "linkify",
|
---|
50 | "dist",
|
---|
51 | "index.js"
|
---|
52 | ],
|
---|
53 | "bin": "./bin/remarkable.js",
|
---|
54 | "main": "./dist/cjs/index.js",
|
---|
55 | "module": "./dist/esm/index.js",
|
---|
56 | "browser": {
|
---|
57 | "./dist/cjs/index.js": "./dist/cjs/index.browser.js",
|
---|
58 | "./dist/esm/index.js": "./dist/esm/index.browser.js"
|
---|
59 | },
|
---|
60 | "engines": {
|
---|
61 | "node": ">= 6.0.0"
|
---|
62 | },
|
---|
63 | "scripts": {
|
---|
64 | "build": "rm -rf dist && yarn rollup -c",
|
---|
65 | "lint": "eslint .",
|
---|
66 | "test:browser": "yarn build && node -r esm ./test/test-browser.js && serve .",
|
---|
67 | "test:spec": "./support/specsplit.js test/fixtures/commonmark/spec.txt",
|
---|
68 | "test:mocha": "mocha -r esm -R spec",
|
---|
69 | "test:ci": "nyc mocha -r esm -R spec --bail",
|
---|
70 | "test": "yarn test:mocha && yarn test:spec",
|
---|
71 | "coverage": "yarn add coveralls@2 && nyc report --reporter=text-lcov | coveralls",
|
---|
72 | "prepublishOnly": "yarn build"
|
---|
73 | },
|
---|
74 | "nyc": {
|
---|
75 | "exclude": [
|
---|
76 | "dist"
|
---|
77 | ]
|
---|
78 | },
|
---|
79 | "dependencies": {
|
---|
80 | "argparse": "^1.0.10",
|
---|
81 | "autolinker": "^3.11.0"
|
---|
82 | },
|
---|
83 | "devDependencies": {
|
---|
84 | "ansi": "^0.3.0",
|
---|
85 | "benchmark": "^1.0.0",
|
---|
86 | "commonmark": "0.12.0",
|
---|
87 | "eslint": "^6.1.0",
|
---|
88 | "eslint-plugin-es5": "^1.4.1",
|
---|
89 | "esm": "^3.2.25",
|
---|
90 | "gulp-format-md": "^0.1.10",
|
---|
91 | "highlight.js": "^9.7.0",
|
---|
92 | "marked": "0.3.2",
|
---|
93 | "mocha": "^6.1.4",
|
---|
94 | "nyc": "^14.1.1",
|
---|
95 | "rollup": "^1.16.7",
|
---|
96 | "rollup-plugin-json": "^4.0.0",
|
---|
97 | "rollup-plugin-node-resolve": "^5.2.0",
|
---|
98 | "rollup-plugin-terser": "^5.1.1",
|
---|
99 | "serve": "^11.1.0"
|
---|
100 | },
|
---|
101 | "keywords": [
|
---|
102 | "commonmark",
|
---|
103 | "markdown",
|
---|
104 | "md",
|
---|
105 | "parse",
|
---|
106 | "parser",
|
---|
107 | "process",
|
---|
108 | "remarkable",
|
---|
109 | "render",
|
---|
110 | "renderer",
|
---|
111 | "text"
|
---|
112 | ],
|
---|
113 | "verb": {
|
---|
114 | "toc": false,
|
---|
115 | "layout": "nil",
|
---|
116 | "tasks": [
|
---|
117 | "readme"
|
---|
118 | ],
|
---|
119 | "plugins": [
|
---|
120 | "gulp-format-md"
|
---|
121 | ],
|
---|
122 | "lint": {
|
---|
123 | "reflinks": true
|
---|
124 | }
|
---|
125 | }
|
---|
126 | }
|
---|