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