mirror of
https://github.com/mermaid-js/mermaid.git
synced 2025-01-14 06:43:25 +08:00
80 lines
2.0 KiB
JSON
80 lines
2.0 KiB
JSON
{
|
|
"name": "mermaid",
|
|
"version": "8.0.0-alpha.2",
|
|
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
|
|
"main": "dist/mermaid.core.js",
|
|
"keywords": [
|
|
"diagram",
|
|
"markdown",
|
|
"flowchart",
|
|
"sequence diagram",
|
|
"gantt",
|
|
"class diagram",
|
|
"git graph"
|
|
],
|
|
"scripts": {
|
|
"build": "webpack --progress --colors",
|
|
"build:watch": "yarn build --watch",
|
|
"release": "yarn build -p --config webpack.config.prod.babel.js",
|
|
"upgrade": "yarn-upgrade-all",
|
|
"lint": "standard",
|
|
"test": "yarn lint && jest",
|
|
"jison": "node -r babel-register node_modules/.bin/gulp jison",
|
|
"prepublishOnly": "yarn build && yarn release && yarn test",
|
|
"prepush": "yarn test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/knsv/mermaid"
|
|
},
|
|
"author": "Knut Sveidqvist",
|
|
"license": "MIT",
|
|
"standard": {
|
|
"ignore": [
|
|
"**/parser/*.js",
|
|
"dist/**/*.js"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"d3": "^4.13.0",
|
|
"dagre-d3-renderer": "^0.5.1",
|
|
"dagre-layout": "^0.8.6",
|
|
"graphlibrary": "^2.2.0",
|
|
"he": "^1.1.1",
|
|
"lodash": "^4.17.5",
|
|
"moment": "^2.21.0",
|
|
"scope-css": "^1.0.5"
|
|
},
|
|
"devDependencies": {
|
|
"babel-core": "^6.26.0",
|
|
"babel-loader": "^7.1.4",
|
|
"babel-preset-env": "^1.6.1",
|
|
"coveralls": "^3.0.0",
|
|
"css-loader": "^0.28.10",
|
|
"css-to-string-loader": "^0.1.3",
|
|
"gulp": "^3.9.1",
|
|
"gulp-filelog": "^0.4.1",
|
|
"gulp-jison": "^1.2.0",
|
|
"husky": "^0.14.3",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"jest": "^22.4.2",
|
|
"jison": "^0.4.18",
|
|
"node-sass": "^4.7.2",
|
|
"sass-loader": "^6.0.7",
|
|
"standard": "^11.0.0",
|
|
"webpack": "^4.1.1",
|
|
"webpack-cli": "^2.0.10",
|
|
"webpack-node-externals": "^1.6.0",
|
|
"yarn-upgrade-all": "^0.3.0"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"jest": {
|
|
"moduleNameMapper": {
|
|
"\\.(css|scss)$": "identity-obj-proxy"
|
|
}
|
|
}
|
|
}
|