mermaid/package.json

116 lines
3.2 KiB
JSON
Raw Normal View History

2017-04-10 10:36:54 +02:00
{
"name": "mermaid",
"version": "8.8.3",
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": {
"build:development": "webpack --progress --colors",
"build:production": "yarn build:development -p --config webpack.config.prod.babel.js",
"build": "yarn build:development && yarn build:production",
2020-11-01 11:08:47 +01:00
"postbuild": "documentation build src/mermaidAPI.js src/config.js --shallow -f md --markdown-toc false > docs/Setup.md",
2017-09-08 18:58:41 +02:00
"build:watch": "yarn build --watch",
2019-03-10 18:23:11 +01:00
"minify": "minify ./dist/mermaid.js > ./dist/mermaid.min.js",
"release": "yarn build",
2019-09-12 21:55:56 +02:00
"lint": "eslint src",
"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 17:32:27 +02:00
"e2e-upd": "yarn lint && jest e2e -u --config e2e/jest.config.js",
"dev": "webpack-dev-server --config webpack.config.e2e.js",
2019-11-17 21:41:55 +01:00
"test": "yarn lint && jest src/.*",
"test:watch": "jest --watch src",
2020-10-08 19:43:29 +02:00
"prepublishOnly": "yarn build && yarn test",
2020-04-04 17:38:30 +02:00
"prepare": "yarn build"
},
2014-11-22 17:53:02 +01:00
"repository": {
"type": "git",
"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",
"dist/**/*.js",
"cypress/**/*.js"
],
"globals": [
"page"
2017-04-11 16:57:57 +02:00
]
},
2014-12-02 19:05:09 +01:00
"dependencies": {
2019-07-22 11:18:09 +02:00
"@braintree/sanitize-url": "^3.1.0",
"babel-eslint": "^10.1.0",
2018-12-17 07:56:26 +01:00
"d3": "^5.7.0",
2019-10-21 11:04:04 +02:00
"dagre": "^0.8.4",
2019-12-03 22:05:39 +01:00
"dagre-d3": "^0.6.4",
"entity-decode": "^2.0.2",
2019-10-21 11:04:04 +02:00
"graphlib": "^2.1.7",
2018-12-17 07:56:26 +01:00
"he": "^1.2.0",
"khroma": "^1.1.0",
2019-03-10 18:23:11 +01:00
"minify": "^4.1.1",
"moment-mini": "^2.22.1",
2020-07-16 20:27:42 +02:00
"stylis": "^3.5.2"
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.8.4",
2018-12-17 07:56:26 +01:00
"@babel/register": "^7.0.0",
2020-02-16 09:30:08 +01:00
"@percy/cypress": "*",
2018-12-17 07:56:26 +01:00
"babel-core": "7.0.0-bridge.0",
2019-12-03 22:05:39 +01:00
"babel-jest": "^24.9.0",
2018-12-17 07:56:26 +01:00
"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",
2020-02-16 19:47:14 +01:00
"cypress": "4.0.1",
2019-12-03 22:05:39 +01:00
"documentation": "^12.0.1",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.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",
2019-11-17 21:41:55 +01:00
"jest": "^24.9.0",
2017-09-02 17:44:00 +02:00
"jison": "^0.4.18",
"moment": "^2.23.0",
"node-sass": "^4.12.0",
2019-12-03 22:05:39 +01:00
"prettier": "^1.18.2",
2019-05-31 14:20:43 +02:00
"puppeteer": "^1.17.0",
2018-12-17 07:56:26 +01:00
"sass-loader": "^7.1.0",
2019-12-03 22:05:39 +01:00
"start-server-and-test": "^1.10.6",
"terser-webpack-plugin": "^2.2.2",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.7.0",
2018-12-17 07:56:26 +01:00
"webpack-cli": "^3.1.2",
2019-05-31 14:20:43 +02:00
"webpack-dev-server": "^3.4.1",
2018-12-17 07:56:26 +01:00
"webpack-node-externals": "^1.7.2",
"yarn-upgrade-all": "^0.5.0"
2017-06-01 07:38:08 +02:00
},
"files": [
"dist"
2018-03-10 01:42:59 +01:00
],
2018-12-17 07:56:26 +01:00
"yarn-upgrade-all": {
"ignore": [
"babel-core"
]
},
"sideEffects": [
"**/*.css",
"**/*.scss"
],
"husky": {
"hooks": {
"pre-push": "yarn test"
}
}
}