2017-04-10 16:36:54 +08:00
|
|
|
{
|
2014-11-03 00:02:29 +01:00
|
|
|
"name": "mermaid",
|
2019-11-07 21:16:43 +01:00
|
|
|
"version": "8.4.2",
|
2017-04-19 18:37:55 +08:00
|
|
|
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
|
2017-09-09 21:47:21 +08:00
|
|
|
"main": "dist/mermaid.core.js",
|
2015-03-01 16:48:16 +01:00
|
|
|
"keywords": [
|
|
|
|
"diagram",
|
|
|
|
"markdown",
|
|
|
|
"flowchart",
|
|
|
|
"sequence diagram",
|
2017-04-19 18:37:55 +08:00
|
|
|
"gantt",
|
|
|
|
"class diagram",
|
|
|
|
"git graph"
|
2015-03-01 16:48:16 +01:00
|
|
|
],
|
2014-11-03 00:02:29 +01:00
|
|
|
"scripts": {
|
2017-12-20 22:10:58 +08:00
|
|
|
"build": "webpack --progress --colors",
|
2019-07-14 06:07:27 -07:00
|
|
|
"postbuild": "documentation build src/mermaidAPI.js --shallow -f md --markdown-toc false -o docs/mermaidAPI.md",
|
2017-09-09 00:58:41 +08:00
|
|
|
"build:watch": "yarn build --watch",
|
2019-03-10 18:23:11 +01:00
|
|
|
"minify": "minify ./dist/mermaid.js > ./dist/mermaid.min.js",
|
2017-12-20 22:10:58 +08:00
|
|
|
"release": "yarn build -p --config webpack.config.prod.babel.js",
|
2019-09-12 12:55:56 -07:00
|
|
|
"lint": "eslint src",
|
2019-09-11 18:53:05 +02:00
|
|
|
"e2e:depr": "yarn lint && jest e2e --config e2e/jest.config.js",
|
|
|
|
"cypress": "percy exec -- cypress run",
|
|
|
|
"e2e": "start-server-and-test dev http://localhost:9000/ cypress",
|
2019-07-16 08:32:27 -07:00
|
|
|
"e2e-upd": "yarn lint && jest e2e -u --config e2e/jest.config.js",
|
2019-09-11 18:53:05 +02:00
|
|
|
"dev": "webpack-dev-server --config webpack.config.e2e.js",
|
2019-11-17 21:41:55 +01:00
|
|
|
"test": "yarn lint && jest src/.*",
|
2019-05-30 19:27:27 +02:00
|
|
|
"test:watch": "jest --watch src",
|
2019-10-16 22:00:57 +02:00
|
|
|
"prepublishOnly": "yarn build && yarn release && yarn test && yarn e2e",
|
2018-03-09 14:23:37 +08:00
|
|
|
"prepush": "yarn test"
|
2014-11-03 00:02:29 +01:00
|
|
|
},
|
2014-11-22 17:53:02 +01:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2019-06-15 14:28:13 +02:00
|
|
|
"url": "https://github.com/knsv/mermaid"
|
2014-11-22 17:53:02 +01:00
|
|
|
},
|
2015-03-01 16:48:16 +01:00
|
|
|
"author": "Knut Sveidqvist",
|
2014-12-09 20:42:31 +01:00
|
|
|
"license": "MIT",
|
2017-04-11 22:57:57 +08:00
|
|
|
"standard": {
|
|
|
|
"ignore": [
|
|
|
|
"**/parser/*.js",
|
2019-09-11 18:53:05 +02:00
|
|
|
"dist/**/*.js",
|
|
|
|
"cypress/**/*.js"
|
2019-05-30 19:27:27 +02:00
|
|
|
],
|
|
|
|
"globals": [
|
|
|
|
"page"
|
2017-04-11 22:57:57 +08:00
|
|
|
]
|
|
|
|
},
|
2014-12-02 19:05:09 +01:00
|
|
|
"dependencies": {
|
2019-07-22 02:18:09 -07:00
|
|
|
"@braintree/sanitize-url": "^3.1.0",
|
2019-10-01 21:29:42 -04:00
|
|
|
"crypto-random-string": "^3.0.1",
|
2018-12-17 14:56:26 +08:00
|
|
|
"d3": "^5.7.0",
|
2019-10-21 14:34:04 +05:30
|
|
|
"dagre-d3": "dagrejs/dagre-d3",
|
|
|
|
"dagre": "^0.8.4",
|
|
|
|
"graphlib": "^2.1.7",
|
2018-12-17 14:56:26 +08:00
|
|
|
"he": "^1.2.0",
|
|
|
|
"lodash": "^4.17.11",
|
2019-03-10 18:23:11 +01:00
|
|
|
"minify": "^4.1.1",
|
2019-07-14 02:44:46 -07:00
|
|
|
"moment-mini": "^2.22.1",
|
2019-09-12 21:03:49 +02:00
|
|
|
"prettier": "^1.18.2",
|
2018-12-17 14:56:26 +08:00
|
|
|
"scope-css": "^1.2.1"
|
2014-12-02 19:05:09 +01:00
|
|
|
},
|
2014-11-03 00:02:29 +01:00
|
|
|
"devDependencies": {
|
2019-09-18 18:37:53 +02:00
|
|
|
"documentation": "^12.0.1",
|
|
|
|
"eslint": "^6.3.0",
|
|
|
|
"eslint-config-prettier": "^6.3.0",
|
|
|
|
"eslint-plugin-prettier": "^3.1.0",
|
2018-12-17 14:56:26 +08:00
|
|
|
"@babel/core": "^7.2.2",
|
|
|
|
"@babel/preset-env": "^7.2.0",
|
|
|
|
"@babel/register": "^7.0.0",
|
2019-09-11 18:53:05 +02:00
|
|
|
"@percy/cypress": "^2.0.1",
|
2018-12-17 14:56:26 +08:00
|
|
|
"babel-core": "7.0.0-bridge.0",
|
|
|
|
"babel-jest": "^23.6.0",
|
|
|
|
"babel-loader": "^8.0.4",
|
|
|
|
"coveralls": "^3.0.2",
|
|
|
|
"css-loader": "^2.0.1",
|
2017-09-12 21:33:39 +08:00
|
|
|
"css-to-string-loader": "^0.1.3",
|
2019-09-11 21:20:28 +02:00
|
|
|
"cypress": "3.4.0",
|
2018-12-17 14:56:26 +08:00
|
|
|
"husky": "^1.2.1",
|
2018-03-10 08:42:59 +08:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2019-11-17 21:41:55 +01:00
|
|
|
"jest": "^24.9.0",
|
2017-09-02 23:44:00 +08:00
|
|
|
"jison": "^0.4.18",
|
2019-06-04 03:14:35 +02:00
|
|
|
"moment": "^2.23.0",
|
2019-10-06 13:15:36 -03:00
|
|
|
"node-sass": "^4.12.0",
|
2019-05-31 14:20:43 +02:00
|
|
|
"puppeteer": "^1.17.0",
|
2018-12-17 14:56:26 +08:00
|
|
|
"sass-loader": "^7.1.0",
|
2019-09-11 18:53:05 +02:00
|
|
|
"start-server-and-test": "^1.10.0",
|
2018-12-17 14:56:26 +08:00
|
|
|
"webpack": "^4.27.1",
|
|
|
|
"webpack-cli": "^3.1.2",
|
2019-05-31 14:20:43 +02:00
|
|
|
"webpack-dev-server": "^3.4.1",
|
2018-12-17 14:56:26 +08:00
|
|
|
"webpack-node-externals": "^1.7.2",
|
|
|
|
"yarn-upgrade-all": "^0.5.0"
|
2017-06-01 13:38:08 +08:00
|
|
|
},
|
|
|
|
"files": [
|
2019-06-04 03:17:14 +02:00
|
|
|
"dist"
|
2018-03-10 08:42:59 +08:00
|
|
|
],
|
2018-12-17 14:56:26 +08:00
|
|
|
"yarn-upgrade-all": {
|
|
|
|
"ignore": [
|
|
|
|
"babel-core"
|
|
|
|
]
|
2018-03-10 08:42:59 +08:00
|
|
|
}
|
2019-07-14 02:44:46 -07:00
|
|
|
}
|