forked from commonmark/commonmark.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.56 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
{
"name": "commonmark",
"description": "a strongly specified, highly compatible variant of Markdown",
"version": "0.29.2",
"homepage": "https://commonmark.org",
"keywords": [
"markdown",
"commonmark",
"md",
"stmd"
],
"repository": "commonmark/commonmark.js",
"author": "John MacFarlane",
"bugs": {
"url": "https://github.com/commonmark/commonmark.js/issues"
},
"license": "BSD-2-Clause",
"type": "commonjs",
"main": "./dist/commonmark.js",
"module": "./lib/index.js",
"exports": {
".": {
"require": "./dist/commonmark.js",
"default": "./lib/index.js"
}
},
"bin": {
"commonmark": "./bin/commonmark"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint .",
"test": "node -r esm ./test/test"
},
"dependencies": {
"entities": "~2.0",
"mdurl": "~1.0.1",
"string.prototype.repeat": "^0.2.0",
"minimist": ">=1.2.2"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": "*"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-json": "^4.0.1",
"@rollup/plugin-node-resolve": "^7.0.0",
"acorn": ">=5.7.4",
"benchmark": "^2.1.4",
"bower": "^1.8.8",
"cached-path-relative": "^1.0.2",
"eslint": "^7.4.0",
"esm": "^3.2.25",
"http-server": "^0.12.3",
"lodash": "^4.17.19",
"markdown-it": "^10.0",
"marked": "^0.8.0",
"mem": ">=4.0.0",
"rollup": "^1.29.0",
"rollup-plugin-uglify": "^6.0.4",
"showdown": "^1.9.1",
"uglify-js": "^3.4.0",
"serialize-javascript": ">=3.1.0"
}
}