forked from temando/remark-mermaid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "remark-mermaid",
"version": "0.2.0",
"description": "A remark plugin for Markdown that replaces `mermaid` graphs with rendered SVGs.",
"license": "MIT",
"keywords": [
"mermaid",
"graphs",
"remark"
],
"repository": {
"type": "git",
"url": "[email protected]:temando/remark-mermaid.git"
},
"dependencies": {
"fs-extra": "^4.0.1",
"unist-util-visit": "^1.1.3",
"which": "^1.3.0"
},
"devDependencies": {
"changelog-verify": "^1.0.4",
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.0.0",
"jest": "^21.2.1",
"mermaid.cli": "^0.3.1",
"remark-parse": "^4.0.0",
"remark-stringify": "^4.0.0",
"to-vfile": "^2.1.2",
"unified": "^6.1.5",
"version-changelog": "^2.1.0",
"vfile": "^2.2.0"
},
"peerDependencies": {
"mermaid.cli": "^0.3.1"
},
"scripts": {
"lint": "$(npm bin)/eslint src",
"teardown": "rm -rf test/runtime/*",
"test": "npm run teardown && $(npm bin)/jest",
"test:coverage": "npm run teardown && $(npm bin)/jest --coverage --coverageReporters text text-summary",
"preversion": "npm run lint && npm run test",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md"
},
"main": "src/index.js",
"files": [
"src"
]
}