2014-03-11 15:54:36 +01:00
|
|
|
{
|
2014-04-08 14:09:04 +02:00
|
|
|
"name": "bpmn-js",
|
2018-09-20 23:14:42 +02:00
|
|
|
"version": "2.5.2",
|
2014-03-11 15:54:36 +01:00
|
|
|
"description": "A bpmn 2.0 toolkit and web modeler",
|
|
|
|
"scripts": {
|
2018-01-08 11:02:44 +01:00
|
|
|
"all": "run-s lint test distro test:distro",
|
2018-01-05 16:09:39 +01:00
|
|
|
"lint": "eslint .",
|
|
|
|
"dev": "npm test -- --auto-watch --no-single-run",
|
|
|
|
"test": "karma start test/config/karma.unit.js",
|
2018-01-08 09:19:19 +01:00
|
|
|
"distro": "node tasks/build-distro.js",
|
2018-01-08 11:02:44 +01:00
|
|
|
"test:distro": "node tasks/test-distro.js",
|
|
|
|
"prepublishOnly": "run-s distro test:distro"
|
2014-03-11 15:54:36 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/bpmn-io/bpmn-js"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"bpmn",
|
2014-08-27 15:43:18 +02:00
|
|
|
"bpmn-js",
|
2014-03-11 15:54:36 +01:00
|
|
|
"toolkit",
|
|
|
|
"web modeler",
|
|
|
|
"modeler",
|
|
|
|
"modeling",
|
|
|
|
"process modeling"
|
|
|
|
],
|
|
|
|
"author": {
|
|
|
|
"name": "Nico Rehwaldt",
|
2015-06-17 12:03:48 +02:00
|
|
|
"url": "https://github.com/nikku"
|
2014-03-11 15:54:36 +01:00
|
|
|
},
|
|
|
|
"contributors": [
|
|
|
|
{
|
|
|
|
"name": "bpmn.io contributors",
|
|
|
|
"url": "https://github.com/bpmn-io"
|
|
|
|
}
|
|
|
|
],
|
2015-07-20 10:47:01 +02:00
|
|
|
"license": "SEE LICENSE IN LICENSE",
|
2018-04-19 19:38:03 +02:00
|
|
|
"sideEffects": [
|
|
|
|
"*.css"
|
|
|
|
],
|
2014-03-11 15:54:36 +01:00
|
|
|
"devDependencies": {
|
2017-10-22 22:23:51 +02:00
|
|
|
"chai": "^4.1.2",
|
2017-09-29 11:08:20 +02:00
|
|
|
"chai-match": "^1.1.1",
|
2018-10-01 10:45:18 +02:00
|
|
|
"codecov": "^3.1.0",
|
2018-01-05 16:09:39 +01:00
|
|
|
"cpx": "^1.5.0",
|
2018-01-08 09:19:19 +01:00
|
|
|
"del": "^3.0.0",
|
2018-03-21 11:59:49 +01:00
|
|
|
"eslint": "^4.19.0",
|
2018-02-27 10:08:31 +01:00
|
|
|
"eslint-plugin-bpmn-io": "^0.5.2",
|
2018-01-08 11:02:44 +01:00
|
|
|
"execa": "^0.8.0",
|
2018-10-01 10:45:18 +02:00
|
|
|
"istanbul-instrumenter-loader": "^3.0.1",
|
2014-12-23 16:51:12 +01:00
|
|
|
"jsondiffpatch": "^0.1.26",
|
2018-10-01 10:45:18 +02:00
|
|
|
"karma": "^2.0.5",
|
2017-05-18 09:42:13 +02:00
|
|
|
"karma-chrome-launcher": "^2.1.1",
|
2018-10-01 10:45:18 +02:00
|
|
|
"karma-coverage": "^1.1.2",
|
2016-05-03 16:23:31 +02:00
|
|
|
"karma-env-preprocessor": "^0.1.1",
|
2017-05-18 09:42:13 +02:00
|
|
|
"karma-firefox-launcher": "^1.0.1",
|
|
|
|
"karma-ie-launcher": "^1.0.0",
|
|
|
|
"karma-mocha": "^1.3.0",
|
|
|
|
"karma-phantomjs-launcher": "^1.0.4",
|
|
|
|
"karma-safari-launcher": "^1.0.0",
|
2017-10-22 22:23:51 +02:00
|
|
|
"karma-sinon-chai": "^1.3.2",
|
2017-05-18 09:42:13 +02:00
|
|
|
"karma-spec-reporter": "0.0.31",
|
2018-07-13 15:50:55 +02:00
|
|
|
"karma-webpack": "^3.0.0",
|
2018-01-08 09:19:19 +01:00
|
|
|
"mkdirp": "^0.5.1",
|
2018-06-12 09:43:03 +02:00
|
|
|
"mocha": "^5.2.0",
|
2015-10-05 13:35:10 +02:00
|
|
|
"mocha-test-container-support": "0.2.0",
|
2018-01-05 16:09:39 +01:00
|
|
|
"npm-run-all": "^4.1.2",
|
2016-09-27 14:32:22 +02:00
|
|
|
"phantomjs-prebuilt": "^2.1.12",
|
2017-12-13 14:05:15 +01:00
|
|
|
"puppeteer": "^0.13.0",
|
2018-07-13 15:50:55 +02:00
|
|
|
"raw-loader": "^0.5.1",
|
2018-04-02 23:15:15 +02:00
|
|
|
"rollup": "^0.57.1",
|
|
|
|
"rollup-plugin-commonjs": "^9.1.0",
|
|
|
|
"rollup-plugin-json": "^2.3.0",
|
|
|
|
"rollup-plugin-license": "^0.6.0",
|
|
|
|
"rollup-plugin-node-resolve": "^3.3.0",
|
|
|
|
"rollup-plugin-replace": "^2.0.0",
|
|
|
|
"rollup-plugin-uglify": "^3.0.0",
|
2018-03-21 11:59:49 +01:00
|
|
|
"sinon": "^4.4.6",
|
2017-10-22 22:23:51 +02:00
|
|
|
"sinon-chai": "^2.14.0",
|
2018-07-13 15:50:55 +02:00
|
|
|
"webpack": "^4.16.0"
|
2014-03-11 15:54:36 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-01-08 09:24:49 +01:00
|
|
|
"bpmn-font": "^0.8.0",
|
2018-05-14 11:30:12 +02:00
|
|
|
"bpmn-moddle": "^5.1.5",
|
2018-04-10 09:33:11 +02:00
|
|
|
"css.escape": "^1.5.1",
|
2018-09-20 23:08:55 +02:00
|
|
|
"diagram-js": "^2.6.1",
|
2018-05-29 11:55:23 +02:00
|
|
|
"diagram-js-direct-editing": "^1.3.0",
|
2016-03-16 17:11:38 +01:00
|
|
|
"ids": "^0.2.0",
|
2015-03-23 15:15:32 +01:00
|
|
|
"inherits": "^2.0.1",
|
2018-04-02 11:09:24 +02:00
|
|
|
"min-dash": "^3.0.0",
|
|
|
|
"min-dom": "^3.0.0",
|
2018-04-24 16:26:53 +02:00
|
|
|
"object-refs": "^0.3.0",
|
2018-04-02 11:09:24 +02:00
|
|
|
"tiny-svg": "^2.0.0"
|
2014-03-11 15:54:36 +01:00
|
|
|
}
|
|
|
|
}
|