forked from mermaidjs/mermaid.cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 900 Bytes
/
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
{
"name": "mermaid.cli",
"version": "0.3.1",
"description": "Command-line interface for mermaid",
"license": "MIT",
"repository": "[email protected]:mermaidjs/mermaid.cli.git",
"author": "Tyler Long <[email protected]>",
"bin": {
"mmdc": "./index.bundle.js"
},
"scripts": {
"upgrade": "yarn-upgrade-all && cp ./node_modules/mermaid/dist/mermaid.min.js .",
"prepublishOnly": "babel ./index.js --out-file ./index.bundle.js"
},
"dependencies": {
"chalk": "^2.3.0",
"commander": "^2.11.0",
"puppeteer": "^0.12.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"mermaid": "^7.1.0",
"standard": "^10.0.3",
"yarn-upgrade-all": "^0.2.0"
},
"files": [
"index.bundle.js",
"mermaid.min.js",
"index.html",
"index.css"
],
"standard": {
"ignore": [
"index.bundle.js"
]
}
}