forked from mermaidjs/mermaid.cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 904 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 904 Bytes
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.4.6",
"description": "Command-line interface for mermaid",
"license": "MIT",
"repository": "git@github.com:mermaidjs/mermaid.cli.git",
"author": "Tyler Long <tyler4long@gmail.com>",
"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.2",
"commander": "^2.15.1",
"puppeteer": "^1.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"mermaid": "^8.0.0-rc.8",
"standard": "^11.0.1",
"yarn-upgrade-all": "^0.3.0"
},
"files": [
"index.bundle.js",
"mermaid.min.js",
"index.html",
"index.css"
],
"standard": {
"ignore": [
"index.bundle.js"
]
}
}