mermaid/package.json

127 lines
3.8 KiB
JSON
Raw Normal View History

2017-04-10 10:36:54 +02:00
{
"name": "mermaid",
2017-06-01 07:19:03 +02:00
"version": "7.0.1",
2017-04-19 12:37:55 +02:00
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
"main": "src/mermaid.js",
"keywords": [
"diagram",
"markdown",
"flowchart",
"sequence diagram",
2017-04-19 12:37:55 +02:00
"gantt",
"class diagram",
"git graph"
],
2014-12-21 02:18:38 +01:00
"bin": {
"mermaid": "./bin/mermaid.js"
},
"scripts": {
2017-04-19 12:37:55 +02:00
"watch": "yarn build -- --watch",
2017-04-16 15:38:48 +02:00
"build": "node -r babel-register ./node_modules/.bin/webpack --progress --colors",
"dist": "node -r babel-register ./node_modules/.bin/webpack --progress --colors -p --config webpack.config.prod.js",
2017-04-15 09:34:23 +02:00
"upgrade": "rm -rf node_modules && rm yarn.lock && yarn install && ncu -ua && yarn upgrade && yarn remove d3 && yarn add d3@3.5.17",
2017-04-11 16:02:50 +02:00
"lint": "node_modules/.bin/standard",
"karma": "node node_modules/karma/bin/karma start karma.conf.js --single-run",
"tape": "node node_modules/tape/bin/tape test/cli_test-*.js",
"test": "yarn tape && yarn karma",
2017-04-19 12:37:55 +02:00
"live": "live-server ./test/examples",
"jison": "gulp jison_legacy",
2017-04-22 11:12:12 +02:00
"live_server": "gulp live-server",
2017-04-22 10:04:16 +02:00
"doc": "rm -r build;rm -r dist/www;gulp vartree;cp dist/www/all.html ../mermaid-pages/index.html;cp dist/mermaid.js ../mermaid-pages/javascripts/lib;cp dist/mermaid.forest.css ../mermaid-pages/stylesheets",
2017-04-22 11:12:12 +02:00
"pretest": "yarn lint",
"prepublishOnly": "yarn build && yarn dist && 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-04-11 17:46:11 +02:00
"dist/**/*.js",
"docs/**/*.js",
"editor/**/*.js"
2017-04-11 16:57:57 +02:00
]
},
2014-12-02 19:05:09 +01:00
"dependencies": {
2017-04-10 11:43:02 +02:00
"chalk": "^1.1.3",
2017-04-15 07:26:58 +02:00
"d3": "3.5.17",
2015-10-30 10:47:25 +01:00
"dagre": "^0.7.4",
2017-04-15 08:49:35 +02:00
"dagre-d3-renderer": "0.1.6",
2017-04-10 11:43:02 +02:00
"he": "^1.1.1",
"lodash": "^4.17.4",
2017-04-10 11:46:52 +02:00
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"moment": "^2.18.1",
"semver": "^5.3.0",
"which": "^1.2.14"
2014-12-02 19:05:09 +01:00
},
"devDependencies": {
2017-05-31 15:46:09 +02:00
"async": "^2.4.1",
2017-04-17 10:47:26 +02:00
"babel-core": "^6.24.1",
2017-04-22 11:12:12 +02:00
"babel-loader": "^7.0.0",
2017-04-17 16:34:25 +02:00
"babel-plugin-transform-remove-strict-mode": "^0.0.2",
2017-05-31 15:46:09 +02:00
"babel-preset-env": "^1.5.1",
2017-04-10 12:10:30 +02:00
"clone": "^2.1.1",
"codeclimate-test-reporter": "0.4.1",
2017-05-31 15:46:09 +02:00
"css-loader": "^0.28.4",
2017-04-10 12:10:30 +02:00
"dox": "^0.9.0",
"event-stream": "^3.3.4",
2017-04-22 09:40:35 +02:00
"extract-text-webpack-plugin": "^2.1.0",
2017-04-10 12:10:30 +02:00
"front-matter": "^2.1.2",
"gulp": "~3.9.1",
"gulp-bower": "0.0.13",
"gulp-bump": "^2.7.0",
"gulp-concat": "~2.6.1",
"gulp-data": "^1.2.1",
2015-09-24 18:41:38 +02:00
"gulp-dox": "^0.1.6",
2017-04-10 12:10:30 +02:00
"gulp-ext-replace": "^0.3.0",
2015-06-14 09:51:42 +02:00
"gulp-filelog": "^0.4.1",
2017-04-10 12:10:30 +02:00
"gulp-front-matter": "^1.3.0",
"gulp-hogan": "^2.0.0",
"gulp-if": "^2.0.2",
"gulp-insert": "^0.5.0",
"gulp-istanbul": "^1.1.1",
"gulp-jasmine": "~2.4.2",
"gulp-jasmine-browser": "^1.7.1",
2015-06-14 09:51:42 +02:00
"gulp-jison": "~1.2.0",
2017-04-10 12:10:30 +02:00
"gulp-less": "^3.3.0",
"gulp-livereload": "^3.8.1",
2015-09-24 18:41:38 +02:00
"gulp-marked": "^1.0.0",
"gulp-mdvars": "^2.0.0",
2017-04-10 12:10:30 +02:00
"gulp-qunit": "~1.5.0",
"gulp-rename": "~1.2.2",
"gulp-shell": "^0.6.3",
"gulp-tag-version": "^1.3.0",
"gulp-util": "^3.0.8",
2015-09-24 18:41:38 +02:00
"gulp-vartree": "^2.0.1",
"hogan.js": "^3.0.2",
"inject-loader": "^3.0.0",
2017-04-24 16:42:07 +02:00
"jasmine": "2.6.0",
2017-04-10 12:10:30 +02:00
"jasmine-es6": "0.4.0",
2017-04-17 10:47:26 +02:00
"jison": "^0.4.17",
2017-05-31 15:46:09 +02:00
"jsdom": "^11.0.0",
"karma": "^1.7.0",
"karma-chrome-launcher": "^2.1.1",
2017-04-10 12:10:30 +02:00
"karma-jasmine": "^1.1.0",
"karma-webpack": "^2.0.3",
2017-04-22 09:40:35 +02:00
"less": "^2.7.2",
2017-05-31 15:46:09 +02:00
"less-loader": "^4.0.4",
2017-04-10 12:10:30 +02:00
"live-server": "^1.2.0",
"map-stream": "0.0.7",
"marked": "^0.3.6",
"mock-browser": "^0.92.14",
2017-05-31 15:46:09 +02:00
"npm-check-updates": "^2.11.2",
"phantomjs-prebuilt": "^2.1.14",
2017-04-10 12:10:30 +02:00
"require-dir": "^0.3.1",
"rimraf": "^2.6.1",
2017-04-15 09:34:23 +02:00
"standard": "^10.0.2",
2017-05-31 15:46:09 +02:00
"style-loader": "^0.18.1",
2017-04-10 12:10:30 +02:00
"tape": "^4.6.3",
2017-05-31 15:46:09 +02:00
"webpack": "^2.6.1",
"webpack-node-externals": "^1.6.0"
}
}