mermaid/package.json

81 lines
2.0 KiB
JSON
Raw Normal View History

2017-04-10 16:36:54 +08:00
{
"name": "mermaid",
2018-03-18 09:35:28 +08:00
"version": "8.0.0-beta.9",
2017-04-19 18:37:55 +08:00
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
2017-09-09 21:47:21 +08:00
"main": "dist/mermaid.core.js",
"keywords": [
"diagram",
"markdown",
"flowchart",
"sequence diagram",
2017-04-19 18:37:55 +08:00
"gantt",
"class diagram",
"git graph"
],
"scripts": {
2017-12-20 22:10:58 +08:00
"build": "webpack --progress --colors",
2017-09-09 00:58:41 +08:00
"build:watch": "yarn build --watch",
2017-12-20 22:10:58 +08:00
"release": "yarn build -p --config webpack.config.prod.babel.js",
2018-03-10 08:42:59 +08:00
"upgrade": "yarn-upgrade-all",
2017-09-03 12:21:42 +08:00
"lint": "standard",
2018-03-10 08:42:59 +08:00
"test": "yarn lint && jest",
2018-03-16 20:13:39 +08:00
"test:watch": "jest --watch",
2017-09-11 23:06:34 +08:00
"jison": "node -r babel-register node_modules/.bin/gulp jison",
2018-03-06 16:11:36 +08:00
"prepublishOnly": "yarn build && yarn release && yarn test",
2018-03-09 14:23:37 +08:00
"prepush": "yarn test"
},
2014-11-22 17:53:02 +01:00
"repository": {
"type": "git",
2014-12-04 15:16:40 -05:00
"url": "https://github.com/knsv/mermaid"
2014-11-22 17:53:02 +01:00
},
"author": "Knut Sveidqvist",
"license": "MIT",
2017-04-11 22:57:57 +08:00
"standard": {
"ignore": [
"**/parser/*.js",
2017-09-01 17:35:13 +08:00
"dist/**/*.js"
2017-04-11 22:57:57 +08:00
]
},
2014-12-02 19:05:09 +01:00
"dependencies": {
2018-03-06 16:32:29 +08:00
"d3": "^4.13.0",
2018-03-17 18:12:24 +08:00
"dagre-d3-renderer": "^0.5.3",
2018-03-06 16:00:14 +08:00
"dagre-layout": "^0.8.6",
2018-03-06 16:04:40 +08:00
"graphlibrary": "^2.2.0",
2017-04-10 17:43:02 +08:00
"he": "^1.1.1",
2018-03-06 14:37:27 +08:00
"lodash": "^4.17.5",
2018-03-11 21:36:59 +08:00
"moment": "^2.21.0",
"scope-css": "^1.0.5"
2014-12-02 19:05:09 +01:00
},
"devDependencies": {
2017-09-01 14:52:27 +08:00
"babel-core": "^6.26.0",
2018-03-08 22:26:30 +08:00
"babel-loader": "^7.1.4",
2017-12-20 22:02:21 +08:00
"babel-preset-env": "^1.6.1",
2018-03-10 08:54:28 +08:00
"coveralls": "^3.0.0",
2018-03-06 14:37:27 +08:00
"css-loader": "^0.28.10",
2017-09-12 21:33:39 +08:00
"css-to-string-loader": "^0.1.3",
2017-09-01 14:52:27 +08:00
"gulp": "^3.9.1",
2015-06-14 09:51:42 +02:00
"gulp-filelog": "^0.4.1",
2017-09-01 14:52:27 +08:00
"gulp-jison": "^1.2.0",
2018-03-06 16:11:36 +08:00
"husky": "^0.14.3",
2018-03-10 08:42:59 +08:00
"identity-obj-proxy": "^3.0.0",
2018-03-09 20:49:12 +08:00
"jest": "^22.4.2",
2017-09-02 23:44:00 +08:00
"jison": "^0.4.18",
2018-03-09 16:23:35 +08:00
"node-sass": "^4.7.2",
"sass-loader": "^6.0.7",
2018-03-06 14:37:27 +08:00
"standard": "^11.0.0",
2018-03-08 22:26:30 +08:00
"webpack": "^4.1.1",
2018-03-13 19:31:04 +08:00
"webpack-cli": "^2.0.11",
2017-12-20 22:02:21 +08:00
"webpack-node-externals": "^1.6.0",
2018-03-06 14:37:27 +08:00
"yarn-upgrade-all": "^0.3.0"
2017-06-01 13:38:08 +08:00
},
"files": [
"dist",
"src"
2018-03-10 08:42:59 +08:00
],
"jest": {
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
}
}
}