-
-
Notifications
You must be signed in to change notification settings - Fork 226
/
package.json
68 lines (68 loc) · 1.57 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.31.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 ./test/test",
"prepublish": "npm run build",
"pretest": "npm run build"
},
"dependencies": {
"entities": "~3.0.1",
"mdurl": "~1.0.1",
"minimist": "~1.2.8"
},
"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": ">=8.7.0",
"benchmark": "^2.1.4",
"bower": "^1.8.13",
"cached-path-relative": "^1.0.2",
"eslint": "^8.6.0",
"http-server": "^14.1.0",
"lodash": "^4.17.21",
"markdown-it": ">= 12.3",
"marked": ">=4.0.10",
"mem": ">=4.0.0",
"rollup": "^1.29.0",
"rollup-plugin-uglify": "^6.0.4",
"serialize-javascript": "^6.0.0",
"showdown": "^1.9.1",
"uglify-js": "^3.14.5"
}
}