forked from commonmark/commonmark.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.1 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
{
"name": "commonmark",
"description": "a strongly specified, highly compatible variant of Markdown",
"version": "0.29.0",
"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": "*"
},
"devDependencies": {
"benchmark": "^2.1.4",
"bower": "^1.8.8",
"browserify": "^16.2.2",
"cached-path-relative": "^1.0.2",
"eslint": "^4.19.1",
"http-server": "^0.11.1",
"lodash": "^4.17.13",
"markdown-it": "^8.4.1",
"marked": "^0.7.0",
"showdown": "^1.8.6",
"uglify-js": "^3.4.0",
"mem": ">=4.0.0"
}
}