-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 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
{
"name": "gatsby-remark-draw",
"version": "1.0.16",
"description": "A wrapper around popular graphing tools (GraphViz, SvgBobRus, Mermaid) to convert text based diagrams in Markdown to SVG.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "npm run lint:js && npm run lint:md",
"lint:js": "eslint --ext .js .",
"lint:md": "remark .",
"qa": "npm run test && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rhanekom/gatsby-remark-draw.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"remark",
"svgbob",
"svgbobrus",
"drawing",
"ascii",
"plugin",
"graphviz",
"mermaid",
"graph",
"flowchart"
],
"author": "Riaan Hanekom",
"license": "MIT",
"dependencies": {
"skyrta": "^0.1.8",
"unist-util-visit": "^1.3.0",
"url-join": "^4.0.0"
},
"bugs": {
"url": "https://github.com/rhanekom/gatsby-remark-draw/issues"
},
"homepage": "https://github.com/rhanekom/gatsby-remark-draw#readme",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.4.3",
"mermaid": "^8.0.0-rc.6",
"mermaid.cli": "^0.4.4",
"remark": "^9.0.0",
"remark-preset-lint-recommended": "^3.0.1",
"remark-validate-links": "^7.0.0"
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
"remark-validate-links"
]
}
}