mermaid/package.json

133 lines
3.9 KiB
JSON
Raw Normal View History

2017-04-10 10:36:54 +02:00
{
"name": "mermaid",
2022-08-11 20:29:15 +02:00
"version": "9.1.5",
2017-04-19 12:37:55 +02:00
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
2022-08-21 11:36:50 +02:00
"main": "dist/mermaid.min.js",
2021-10-01 15:49:32 +02:00
"module": "dist/mermaid.esm.min.mjs",
"exports": {
".": {
2022-08-21 11:36:50 +02:00
"require": "./dist/mermaid.min.js",
2021-10-01 15:49:32 +02:00
"import": "./dist/mermaid.esm.min.mjs"
},
"./*": "./*"
},
"keywords": [
"diagram",
"markdown",
"flowchart",
"sequence diagram",
2017-04-19 12:37:55 +02:00
"gantt",
"class diagram",
"git graph"
],
"scripts": {
"build:development": "webpack --mode development --progress --color",
"build:production": "webpack --mode production --progress --color",
2021-09-30 22:19:17 +02:00
"build": "concurrently \"yarn build:development\" \"yarn build:production\"",
2021-01-21 21:18:38 +01:00
"postbuild": "documentation build src/mermaidAPI.js src/config.js src/defaultConfig.js --shallow -f md --markdown-toc false > docs/Setup.md",
2021-09-30 22:19:17 +02:00
"build:watch": "yarn build:development --watch",
"release": "yarn build",
"lint": "eslint ./ --ext .js,.json,.html",
"lint:fix": "yarn lint --fix",
"e2e:depr": "yarn lint && jest e2e --config e2e/jest.config.js",
"cypress": "cypress run",
2022-08-21 15:07:27 +02:00
"cypress:open": "cypress open",
"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 serve --config ./.webpack/webpack.config.e2e.babel.js",
"ci": "jest src/.*",
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",
2021-12-08 19:30:10 +01:00
"prepare": "husky install && yarn build",
"pre-commit": "lint-staged"
},
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": {
"@braintree/sanitize-url": "^6.0.0",
"d3": "^7.0.0",
"dagre": "^0.8.5",
2019-12-03 22:05:39 +01:00
"dagre-d3": "^0.6.4",
"dompurify": "2.3.10",
"graphlib": "^2.1.8",
"khroma": "^2.0.0",
2022-08-11 20:29:15 +02:00
"moment-mini": "2.24.0",
"stylis": "^4.0.10"
2014-12-02 19:05:09 +01:00
},
"devDependencies": {
2022-05-10 20:33:55 +02:00
"@applitools/eyes-cypress": "^3.25.7",
2021-07-07 17:09:08 +02:00
"@babel/core": "^7.14.6",
"@babel/eslint-parser": "^7.14.7",
2021-07-07 17:09:08 +02:00
"@babel/preset-env": "^7.14.7",
"@babel/register": "^7.14.5",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
2022-08-20 21:28:52 +02:00
"@types/d3": "^7.4.0",
2022-08-21 07:30:22 +02:00
"@types/dompurify": "^2.3.3",
2022-08-20 21:08:26 +02:00
"@types/jest": "^28.1.7",
2022-08-21 07:30:22 +02:00
"awesome-typescript-loader": "^5.2.1",
"babel-jest": "^28.0.3",
2021-07-07 17:09:08 +02:00
"babel-loader": "^8.2.2",
"concurrently": "^7.0.0",
2018-12-17 07:56:26 +01:00
"coveralls": "^3.0.2",
2017-09-12 15:33:39 +02:00
"css-to-string-loader": "^0.1.3",
2022-08-04 18:59:06 +02:00
"cypress": "9.7.0",
"cypress-image-snapshot": "^4.0.1",
2021-07-15 13:44:06 +02:00
"documentation": "13.2.0",
"eslint": "^8.4.1",
2021-07-15 11:35:12 +02:00
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsdoc": "^39.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
2018-03-10 01:42:59 +01:00
"identity-obj-proxy": "^3.0.0",
"jest": "^28.0.3",
"jest-environment-jsdom": "^28.0.2",
2017-09-02 17:44:00 +02:00
"jison": "^0.4.18",
"js-base64": "3.7.2",
"lint-staged": "^13.0.0",
"moment": "^2.23.0",
"path-browserify": "^1.0.1",
2021-07-15 11:35:12 +02:00
"prettier": "^2.3.2",
2021-11-10 08:41:52 +01:00
"prettier-plugin-jsdoc": "^0.3.30",
"start-server-and-test": "^1.12.6",
"terser-webpack-plugin": "^5.2.4",
2022-08-20 21:08:26 +02:00
"ts-jest": "^28.0.8",
2022-08-20 20:10:52 +02:00
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack": "^5.53.0",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^4.3.0",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
2017-06-01 07:38:08 +02:00
},
2022-07-25 09:03:51 +02:00
"resolutions": {
"d3": "^7.0.0"
},
2017-06-01 07:38:08 +02:00
"files": [
"dist"
2018-03-10 01:42:59 +01:00
],
"sideEffects": [
"**/*.css",
"**/*.scss"
]
2022-08-21 15:07:27 +02:00
}