forked from commonmark/commonmark.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 757 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 757 Bytes
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
{ "name": "commonmark",
"description": "a strongly specified, highly compatible variant of Markdown",
"version": "0.28.1",
"homepage": "http://commonmark.org",
"keywords":
[ "markdown",
"commonmark",
"md",
"stmd" ],
"repository": "jgm/commonmark.js",
"author": "John MacFarlane",
"bugs": { "url": "https://github.com/jgm/commonmark.js/issues" },
"license": "BSD-2-Clause",
"main": "./lib/index.js",
"bin": { "commonmark": "./bin/commonmark" },
"scripts": { "test": "node ./test/test.js" },
"dependencies": {
"entities": "~ 1.1.1",
"mdurl": "~ 1.0.1",
"string.prototype.repeat": "^0.2.0",
"minimist": "~ 1.2.0"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": "*"
}
}