mermaid/package.json

101 lines
2.6 KiB
JSON
Raw Normal View History

{
"name": "mermaid",
2015-06-21 17:26:19 +02:00
"version": "0.5.1",
"description": "Markdownish syntax for generating flowcharts, sequence diagrams and gantt charts.",
"main": "src/mermaid.js",
"keywords": [
"diagram",
"markdown",
"flowchart",
"sequence diagram",
"gantt"
],
2014-12-21 02:18:38 +01:00
"bin": {
"mermaid": "./bin/mermaid.js"
},
"scripts": {
2015-07-22 07:15:05 +02:00
"test": "./node_modules/.bin/gulp dist && ./node_modules/.bin/gulp 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",
2014-12-02 19:05:09 +01:00
"dependencies": {
2014-12-21 02:18:38 +01:00
"chalk": "^0.5.1",
"d3": "~3.4.13",
"dagre-d3": "~0.4.8",
2014-12-02 19:05:09 +01:00
"he": "^0.5.0",
2014-12-21 02:18:38 +01:00
"minimist": "^1.1.0",
"mkdirp": "^0.5.0",
2015-02-08 20:07:15 +01:00
"moment": "^2.9.0",
2014-12-21 02:18:38 +01:00
"semver": "^4.1.1",
"which": "^1.0.8"
2014-12-02 19:05:09 +01:00
},
"devDependencies": {
2014-12-21 02:40:58 +01:00
"async": "^0.9.0",
2014-11-22 17:53:02 +01:00
"browserify": "~6.2.0",
2014-12-21 02:40:58 +01:00
"clone": "^0.2.0",
"codeclimate-test-reporter": "0.0.4",
"connect-livereload": "^0.5.3",
2014-11-22 17:53:02 +01:00
"d3": "~3.4.13",
2015-03-15 14:55:16 +01:00
"dateformat": "^1.0.11",
"event-stream": "^3.2.0",
"express": "^4.12.4",
"foundation": "^4.2.1-1",
"front-matter": "^0.2.0",
2015-07-22 07:00:45 +02:00
"gulp": "~3.8.9",
2015-07-22 06:36:31 +02:00
"gulp-bower": "0.0.10",
"gulp-browserify": "^0.5.0",
2014-12-03 19:29:44 +01:00
"gulp-bump": "^0.1.11",
2014-11-22 17:53:02 +01:00
"gulp-concat": "~2.4.1",
"gulp-data": "^1.1.1",
2014-11-22 17:53:02 +01:00
"gulp-ext-replace": "~0.1.0",
2015-06-14 09:51:42 +02:00
"gulp-filelog": "^0.4.1",
"gulp-hogan": "^1.1.0",
"gulp-if": "^1.2.5",
"gulp-insert": "^0.4.0",
"gulp-istanbul": "^0.4.0",
2014-11-22 17:53:02 +01:00
"gulp-jasmine": "~1.0.1",
2015-06-14 09:51:42 +02:00
"gulp-jison": "~1.2.0",
2014-12-10 07:17:07 +01:00
"gulp-jshint": "^1.9.0",
"gulp-less": "^3.0.1",
"gulp-livereload": "^3.8.0",
2015-07-22 06:36:31 +02:00
"gulp-qunit": "~1.2.1",
2014-11-22 17:53:02 +01:00
"gulp-rename": "~1.2.0",
"gulp-shell": "^0.2.10",
2014-12-03 19:29:44 +01:00
"gulp-tag-version": "^1.2.1",
2014-11-22 17:53:02 +01:00
"gulp-uglify": "~1.0.1",
"he": "^0.5.0",
"hogan.js": "^3.0.2",
2014-11-22 17:53:02 +01:00
"jasmine": "~2.0.1",
"jison": "~0.4.15",
2014-12-10 07:17:07 +01:00
"jshint-stylish": "^1.0.0",
2015-07-22 07:00:45 +02:00
"karma": "~0.12.20",
"karma-chrome-launcher": "~0.1.5",
2014-11-22 17:53:02 +01:00
"karma-jasmine": "~0.2.1",
"karma-requirejs": "~0.2.2",
2015-07-22 07:00:45 +02:00
"lodash": "^2.4.1",
2014-11-22 17:53:02 +01:00
"lodash._escapestringchar": "^2.4.1",
"lodash._objecttypes": "^2.4.1",
"lodash._reinterpolate": "^2.4.1",
"lodash._reunescapedhtml": "^2.4.1",
"lodash.defaults": "^2.4.1",
"lodash.templatesettings": "^2.4.1",
"lodash.values": "^2.4.1",
"marked": "^0.3.2",
"mock-browser": "^0.90.27",
"path": "^0.4.9",
2015-06-21 17:26:19 +02:00
"phantomjs": "^1.9.17",
"proxyquire": "^1.3.1",
"require-dir": "^0.3.0",
2014-12-21 02:40:58 +01:00
"rewire": "^2.1.3",
"rimraf": "^2.2.8",
"tape": "^3.0.3",
"tiny-lr": "^0.1.6",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.2.2"
}
}