mermaid/package.json

94 lines
2.3 KiB
JSON

{
"name": "mermaid",
"version": "8.0.0-rc.8",
"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",
"lint": "standard",
"test": "yarn lint && jest",
"test:watch": "jest --watch",
"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": "^5.7.0",
"dagre-d3-renderer": "^0.5.8",
"dagre-layout": "^0.8.8",
"graphlibrary": "^2.2.0",
"he": "^1.2.0",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"scope-css": "^1.2.1"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"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",
"css-to-string-loader": "^0.1.3",
"gulp": "^4.0.0",
"gulp-filelog": "^0.4.1",
"gulp-jison": "^1.2.0",
"husky": "^1.2.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
"jison": "^0.4.18",
"node-sass": "^4.11.0",
"sass-loader": "^7.1.0",
"standard": "^12.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-node-externals": "^1.7.2",
"yarn-upgrade-all": "^0.5.0"
},
"files": [
"dist",
"src"
],
"jest": {
"transform": {
"^.+\\.jsx?$": "./transformer.js"
},
"transformIgnorePatterns": [
"/node_modules/(?!dagre-d3-renderer/lib).*\\.js"
],
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
}
},
"yarn-upgrade-all": {
"ignore": [
"babel-core"
]
}
}