UNPKG

2.16 kBJSONView Raw
1{
2 "name": "mermaid",
3 "version": "8.0.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",
17 "build:watch": "yarn build --watch",
18 "release": "yarn build -p --config webpack.config.prod.babel.js",
19 "lint": "standard",
20 "test": "yarn lint && jest",
21 "test:watch": "jest --watch",
22 "jison": "node -r @babel/register node_modules/.bin/gulp jison",
23 "prepublishOnly": "yarn build && yarn release && yarn test",
24 "prepush": "yarn test"
25 },
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/knsv/mermaid"
29 },
30 "author": "Knut Sveidqvist",
31 "license": "MIT",
32 "standard": {
33 "ignore": [
34 "**/parser/*.js",
35 "dist/**/*.js"
36 ]
37 },
38 "dependencies": {
39 "d3": "^5.7.0",
40 "dagre-d3-renderer": "^0.5.8",
41 "dagre-layout": "^0.8.8",
42 "graphlibrary": "^2.2.0",
43 "he": "^1.2.0",
44 "lodash": "^4.17.11",
45 "moment": "^2.23.0",
46 "scope-css": "^1.2.1"
47 },
48 "devDependencies": {
49 "@babel/core": "^7.2.2",
50 "@babel/preset-env": "^7.2.0",
51 "@babel/register": "^7.0.0",
52 "babel-core": "7.0.0-bridge.0",
53 "babel-jest": "^23.6.0",
54 "babel-loader": "^8.0.4",
55 "coveralls": "^3.0.2",
56 "css-loader": "^2.0.1",
57 "css-to-string-loader": "^0.1.3",
58 "gulp": "^4.0.0",
59 "gulp-filelog": "^0.4.1",
60 "gulp-jison": "^1.2.0",
61 "husky": "^1.2.1",
62 "identity-obj-proxy": "^3.0.0",
63 "jest": "^23.6.0",
64 "jison": "^0.4.18",
65 "node-sass": "^4.11.0",
66 "sass-loader": "^7.1.0",
67 "standard": "^12.0.1",
68 "webpack": "^4.27.1",
69 "webpack-cli": "^3.1.2",
70 "webpack-node-externals": "^1.7.2",
71 "yarn-upgrade-all": "^0.5.0"
72 },
73 "files": [
74 "dist",
75 "src"
76 ],
77 "jest": {
78 "moduleNameMapper": {
79 "\\.(css|scss)$": "identity-obj-proxy"
80 }
81 },
82 "yarn-upgrade-all": {
83 "ignore": [
84 "babel-core"
85 ]
86 }
87}