1 | {
|
2 | "name": "mermaid",
|
3 | "version": "8.5.0",
|
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 -p",
|
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": "eslint src",
|
22 | "e2e:depr": "yarn lint && jest e2e --config e2e/jest.config.js",
|
23 | "cypress": "percy exec -- cypress run",
|
24 | "e2e": "start-server-and-test dev http://localhost:9000/ cypress",
|
25 | "e2e-upd": "yarn lint && jest e2e -u --config e2e/jest.config.js",
|
26 | "dev": "webpack-dev-server --config webpack.config.e2e.js",
|
27 | "test": "yarn lint && jest src/.*",
|
28 | "test:watch": "jest --watch src",
|
29 | "prepublishOnly": "yarn build && yarn release && yarn test && yarn e2e",
|
30 | "prepush": "yarn test"
|
31 | },
|
32 | "repository": {
|
33 | "type": "git",
|
34 | "url": "https://github.com/knsv/mermaid"
|
35 | },
|
36 | "author": "Knut Sveidqvist",
|
37 | "license": "MIT",
|
38 | "standard": {
|
39 | "ignore": [
|
40 | "**/parser/*.js",
|
41 | "dist/**/*.js",
|
42 | "cypress/**/*.js"
|
43 | ],
|
44 | "globals": [
|
45 | "page"
|
46 | ]
|
47 | },
|
48 | "dependencies": {
|
49 | "@braintree/sanitize-url": "^3.1.0",
|
50 | "crypto-random-string": "^3.0.1",
|
51 | "d3": "^5.7.0",
|
52 | "dagre": "^0.8.4",
|
53 | "dagre-d3": "^0.6.4",
|
54 | "graphlib": "^2.1.7",
|
55 | "he": "^1.2.0",
|
56 | "lodash": "^4.17.11",
|
57 | "minify": "^4.1.1",
|
58 | "moment-mini": "^2.22.1",
|
59 | "scope-css": "^1.2.1"
|
60 | },
|
61 | "devDependencies": {
|
62 | "@babel/core": "^7.2.2",
|
63 | "@babel/preset-env": "^7.8.4",
|
64 | "@babel/register": "^7.0.0",
|
65 | "@percy/cypress": "*",
|
66 | "babel-core": "7.0.0-bridge.0",
|
67 | "babel-jest": "^24.9.0",
|
68 | "babel-loader": "^8.0.4",
|
69 | "coveralls": "^3.0.2",
|
70 | "css-loader": "^2.0.1",
|
71 | "css-to-string-loader": "^0.1.3",
|
72 | "cypress": "4.0.1",
|
73 | "documentation": "^12.0.1",
|
74 | "eslint": "^6.3.0",
|
75 | "eslint-config-prettier": "^6.3.0",
|
76 | "eslint-plugin-prettier": "^3.1.0",
|
77 | "husky": "^1.2.1",
|
78 | "identity-obj-proxy": "^3.0.0",
|
79 | "jest": "^24.9.0",
|
80 | "jison": "^0.4.18",
|
81 | "moment": "^2.23.0",
|
82 | "node-sass": "^4.12.0",
|
83 | "prettier": "^1.18.2",
|
84 | "puppeteer": "^1.17.0",
|
85 | "sass-loader": "^7.1.0",
|
86 | "start-server-and-test": "^1.10.6",
|
87 | "terser-webpack-plugin": "^2.2.2",
|
88 | "webpack": "^4.41.2",
|
89 | "webpack-cli": "^3.1.2",
|
90 | "webpack-dev-server": "^3.4.1",
|
91 | "webpack-node-externals": "^1.7.2",
|
92 | "yarn-upgrade-all": "^0.5.0"
|
93 | },
|
94 | "files": [
|
95 | "dist"
|
96 | ],
|
97 | "yarn-upgrade-all": {
|
98 | "ignore": [
|
99 | "babel-core"
|
100 | ]
|
101 | }
|
102 | }
|