-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "remark-graphviz",
"version": "0.2.2",
"description": "A remark plugin for Markdown that replaces graphs defined in `dot` with rendered SVGs.",
"license": "MIT",
"keywords": [
"dot",
"graphviz",
"circo",
"remark"
],
"repository": {
"type": "git",
"url": "git@github.com:temando/remark-graphviz.git"
},
"dependencies": {
"fs-extra": "^4.0.1",
"unist-util-visit": "^1.1.3",
"viz.js": "^1.3.0"
},
"devDependencies": {
"eslint": "^4.2.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.0.0",
"jest": "^20.0.4",
"remark-parse": "^4.0.0",
"remark-stringify": "^4.0.0",
"to-vfile": "^2.1.2",
"unified": "^6.1.5",
"vfile": "^2.2.0"
},
"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"
},
"main": "src/index.js",
"files": [
"src"
]
}