UNPKG

2.79 kBJSONView Raw
1{
2 "name": "mermaid",
3 "version": "8.2.3",
4 "description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
5 "main": "dist/mermaid.core.js",
6 "keywords": [
7 "diagram",
8 "markdown",
9 "flowchart",
10 "sequence diagram",
11 "gantt",
12 "class diagram",
13 "git graph"
14 ],
15 "scripts": {
16 "build": "webpack --progress --colors",
17 "postbuild": "documentation build src/mermaidAPI.js --shallow -f md --markdown-toc false -o docs/mermaidAPI.md",
18 "build:watch": "yarn build --watch",
19 "minify": "minify ./dist/mermaid.js > ./dist/mermaid.min.js",
20 "release": "yarn build -p --config webpack.config.prod.babel.js",
21 "lint": "standard",
22 "e2e": "yarn lint && jest e2e --config e2e/jest.config.js",
23 "e2e-upd": "yarn lint && jest e2e -u --config e2e/jest.config.js",
24 "dev": "yarn lint && webpack-dev-server --config webpack.config.e2e.js",
25 "test": "yarn lint && jest src",
26 "test:watch": "jest --watch src",
27 "jison": "node -r @babel/register node_modules/.bin/gulp jison",
28 "prepublishOnly": "yarn build && yarn release && yarn test",
29 "prepush": "yarn test"
30 },
31 "repository": {
32 "type": "git",
33 "url": "https://github.com/knsv/mermaid"
34 },
35 "author": "Knut Sveidqvist",
36 "license": "MIT",
37 "standard": {
38 "ignore": [
39 "**/parser/*.js",
40 "dist/**/*.js"
41 ],
42 "globals": [
43 "page"
44 ]
45 },
46 "dependencies": {
47 "@braintree/sanitize-url": "^3.1.0",
48 "d3": "^5.7.0",
49 "dagre-d3-renderer": "^0.5.8",
50 "dagre-layout": "^0.8.8",
51 "documentation": "^12.0.1",
52 "graphlibrary": "^2.2.0",
53 "gulp-print": "^5.0.2",
54 "he": "^1.2.0",
55 "lodash": "^4.17.11",
56 "minify": "^4.1.1",
57 "moment-mini": "^2.22.1",
58 "scope-css": "^1.2.1"
59 },
60 "devDependencies": {
61 "@babel/core": "^7.2.2",
62 "@babel/preset-env": "^7.2.0",
63 "@babel/register": "^7.0.0",
64 "babel-core": "7.0.0-bridge.0",
65 "babel-jest": "^23.6.0",
66 "babel-loader": "^8.0.4",
67 "coveralls": "^3.0.2",
68 "css-loader": "^2.0.1",
69 "css-to-string-loader": "^0.1.3",
70 "gulp": "^4.0.0",
71 "gulp-jison": "^1.2.0",
72 "husky": "^1.2.1",
73 "identity-obj-proxy": "^3.0.0",
74 "jest": "^23.6.0",
75 "jest-environment-puppeteer": "^4.2.0",
76 "jest-image-snapshot": "^2.8.2",
77 "jest-puppeteer": "^4.2.0",
78 "jison": "^0.4.18",
79 "moment": "^2.23.0",
80 "node-sass": "^4.11.0",
81 "puppeteer": "^1.17.0",
82 "sass-loader": "^7.1.0",
83 "standard": "^12.0.1",
84 "webpack": "^4.27.1",
85 "webpack-cli": "^3.1.2",
86 "webpack-dev-server": "^3.4.1",
87 "webpack-node-externals": "^1.7.2",
88 "yarn-upgrade-all": "^0.5.0"
89 },
90 "files": [
91 "dist"
92 ],
93 "yarn-upgrade-all": {
94 "ignore": [
95 "babel-core"
96 ]
97 }
98}