-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
62 lines (62 loc) · 1.4 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
{
"name": "markdown-it-include",
"version": "2.0.0",
"description": "Markdown-it plugin which adds the ability to include markdown fragment files.",
"keywords": [
"markdown-it-plugin",
"markdown-it",
"markdown",
"include"
],
"repository": {
"type": "git",
"url": "https://github.com/camelaissani/markdown-it-include"
},
"bugs": {
"url": "https://github.com/camelaissani/markdown-it-include/issues"
},
"license": "MIT",
"source": "index.js",
"main": "dist/markdownItInclude.js",
"module": "dist/markdownItInclude.mjs",
"author": {
"name": "Camel Aissani",
"email": "[email protected]",
"url": "https://nuageprive.fr/"
},
"peerDependencies": {
"markdown-it": ">=8.4.2"
},
"devDependencies": {
"chai": "4.2.0",
"coveralls": "3.1.0",
"cross-env": "7.0.2",
"eslint": "7.3.1",
"glob": "7.1.6",
"markdown-it": "11.0.0",
"markdown-it-testgen": "0.1.6",
"microbundle": "0.12.2",
"mocha": "8.1.3",
"nyc": "15.1.0",
"prepend-file": "2.0.0"
},
"reporter": [
"lcov",
"text",
"text-summary"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "make",
"test": "make test",
"todo": "make todo",
"clean": "make clean",
"superclean": "make superclean",
"doc": "make doc",
"lint": "make lint",
"lintfix": "make lintfix",
"cov": "make report-coverage"
}
}