mermaid/package.json

89 lines
2.1 KiB
JSON
Raw Normal View History

2017-04-10 10:36:54 +02:00
{
"name": "mermaid",
2018-04-12 17:05:08 +02:00
"version": "8.0.0-rc.8",
2017-04-19 12:37:55 +02:00
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
2017-09-09 15:47:21 +02:00
"main": "dist/mermaid.core.js",
"keywords": [
"diagram",
"markdown",
"flowchart",
"sequence diagram",
2017-04-19 12:37:55 +02:00
"gantt",
"class diagram",
"git graph"
],
"scripts": {
2017-12-20 15:10:58 +01:00
"build": "webpack --progress --colors",
2017-09-08 18:58:41 +02:00
"build:watch": "yarn build --watch",
2017-12-20 15:10:58 +01:00
"release": "yarn build -p --config webpack.config.prod.babel.js",
2017-09-03 06:21:42 +02:00
"lint": "standard",
2018-03-10 01:42:59 +01:00
"test": "yarn lint && jest",
2018-03-16 13:13:39 +01:00
"test:watch": "jest --watch",
2018-12-17 10:31:22 +01:00
"jison": "node -r @babel/register node_modules/.bin/gulp jison",
2018-03-06 09:11:36 +01:00
"prepublishOnly": "yarn build && yarn release && yarn test",
2018-03-09 07:23:37 +01:00
"prepush": "yarn test"
},
2014-11-22 17:53:02 +01:00
"repository": {
"type": "git",
2014-12-04 21:16:40 +01:00
"url": "https://github.com/knsv/mermaid"
2014-11-22 17:53:02 +01:00
},
"author": "Knut Sveidqvist",
"license": "MIT",
2017-04-11 16:57:57 +02:00
"standard": {
"ignore": [
"**/parser/*.js",
2017-09-01 11:35:13 +02:00
"dist/**/*.js"
2017-04-11 16:57:57 +02:00
]
},
2014-12-02 19:05:09 +01:00
"dependencies": {
2018-12-17 07:56:26 +01:00
"d3": "^5.7.0",
2018-04-12 03:06:20 +02:00
"dagre-d3-renderer": "^0.5.8",
2018-03-20 14:49:31 +01:00
"dagre-layout": "^0.8.8",
2018-03-06 09:04:40 +01:00
"graphlibrary": "^2.2.0",
2018-12-17 07:56:26 +01:00
"he": "^1.2.0",
"lodash": "^4.17.11",
"moment-mini": "^2.22.1",
2018-12-17 07:56:26 +01:00
"scope-css": "^1.2.1"
2014-12-02 19:05:09 +01:00
},
"devDependencies": {
2018-12-17 07:56:26 +01:00
"@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",
2017-09-12 15:33:39 +02:00
"css-to-string-loader": "^0.1.3",
2018-12-17 07:56:26 +01:00
"gulp": "^4.0.0",
2015-06-14 09:51:42 +02:00
"gulp-filelog": "^0.4.1",
2017-09-01 08:52:27 +02:00
"gulp-jison": "^1.2.0",
2018-12-17 07:56:26 +01:00
"husky": "^1.2.1",
2018-03-10 01:42:59 +01:00
"identity-obj-proxy": "^3.0.0",
2018-12-17 07:56:26 +01:00
"jest": "^23.6.0",
2017-09-02 17:44:00 +02:00
"jison": "^0.4.18",
"moment": "^2.23.0",
2018-12-17 07:56:26 +01:00
"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"
2017-06-01 07:38:08 +02:00
},
"files": [
"dist",
"src"
2018-03-10 01:42:59 +01:00
],
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
}
2018-12-17 07:56:26 +01:00
},
"yarn-upgrade-all": {
"ignore": [
"babel-core"
]
2018-03-10 01:42:59 +01:00
}
}