2014-03-11 15:54:36 +01:00
|
|
|
{
|
2014-04-08 14:09:04 +02:00
|
|
|
"name": "bpmn-js",
|
2021-10-20 22:36:58 +02:00
|
|
|
"version": "8.8.2",
|
2014-03-11 15:54:36 +01:00
|
|
|
"description": "A bpmn 2.0 toolkit and web modeler",
|
2021-05-17 16:15:16 +02:00
|
|
|
"main": "index.js",
|
2021-05-17 16:18:44 +02:00
|
|
|
"files": [
|
|
|
|
".babelrc",
|
|
|
|
"dist",
|
|
|
|
"lib",
|
|
|
|
"test/util",
|
|
|
|
"test/helper",
|
|
|
|
"test/matchers",
|
|
|
|
"!.eslintrc"
|
|
|
|
],
|
2014-03-11 15:54:36 +01:00
|
|
|
"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 .",
|
2021-03-09 15:55:29 +01:00
|
|
|
"start": "cross-env SINGLE_START=modeler npm run dev",
|
|
|
|
"start:viewer": "cross-env SINGLE_START=viewer npm run dev",
|
|
|
|
"start:navigated-viewer": "cross-env SINGLE_START=navigated-viewer npm run dev",
|
2018-01-05 16:09:39 +01:00
|
|
|
"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",
|
2021-03-09 15:55:29 +01:00
|
|
|
"collect-translations": "cross-env COLLECT_TRANSLATIONS=1 npm test",
|
2018-01-08 11:02:44 +01:00
|
|
|
"test:distro": "node tasks/test-distro.js",
|
2021-06-23 08:50:21 +02:00
|
|
|
"postversion": "run-s distro test:distro",
|
|
|
|
"prepare": "run-s 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": {
|
2021-06-23 09:32:07 +02:00
|
|
|
"@rollup/plugin-commonjs": "^19.0.0",
|
|
|
|
"@rollup/plugin-node-resolve": "^13.0.0",
|
2020-05-26 14:42:57 +02:00
|
|
|
"bpmn-font": "^0.10.0",
|
2019-08-07 15:17:28 +02:00
|
|
|
"camunda-bpmn-moddle": "^4.0.1",
|
2021-06-23 09:54:22 +02:00
|
|
|
"chai": "4.1.2",
|
2017-09-29 11:08:20 +02:00
|
|
|
"chai-match": "^1.1.1",
|
2018-01-05 16:09:39 +01:00
|
|
|
"cpx": "^1.5.0",
|
2021-03-09 15:55:29 +01:00
|
|
|
"cross-env": "^7.0.3",
|
2021-06-23 09:32:07 +02:00
|
|
|
"del": "^6.0.0",
|
2021-06-23 09:30:31 +02:00
|
|
|
"eslint": "^7.29.0",
|
2021-01-27 21:50:54 +01:00
|
|
|
"eslint-plugin-bpmn-io": "^0.12.0",
|
2021-06-23 09:30:31 +02:00
|
|
|
"eslint-plugin-import": "^2.23.4",
|
2021-06-23 09:32:07 +02:00
|
|
|
"execa": "^5.1.1",
|
2018-10-01 10:45:18 +02:00
|
|
|
"istanbul-instrumenter-loader": "^3.0.1",
|
2021-06-23 09:21:09 +02:00
|
|
|
"karma": "^6.3.4",
|
2019-10-31 14:32:06 +01:00
|
|
|
"karma-chrome-launcher": "^3.1.0",
|
2020-12-02 00:34:28 +01:00
|
|
|
"karma-coverage": "^2.0.3",
|
2021-06-23 09:21:09 +02:00
|
|
|
"karma-debug-launcher": "0.0.4",
|
2016-05-03 16:23:31 +02:00
|
|
|
"karma-env-preprocessor": "^0.1.1",
|
2021-06-23 09:21:09 +02:00
|
|
|
"karma-firefox-launcher": "^2.1.1",
|
2017-05-18 09:42:13 +02:00
|
|
|
"karma-ie-launcher": "^1.0.0",
|
2020-12-02 00:34:28 +01:00
|
|
|
"karma-mocha": "^2.0.1",
|
2017-05-18 09:42:13 +02:00
|
|
|
"karma-phantomjs-launcher": "^1.0.4",
|
|
|
|
"karma-safari-launcher": "^1.0.0",
|
2018-10-25 20:52:50 +02:00
|
|
|
"karma-sinon-chai": "^2.0.2",
|
2021-06-23 09:21:09 +02:00
|
|
|
"karma-webpack": "^5.0.0",
|
2018-01-08 09:19:19 +01:00
|
|
|
"mkdirp": "^0.5.1",
|
2021-06-23 09:54:22 +02:00
|
|
|
"mocha": "^8.4.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",
|
2020-12-02 00:34:28 +01:00
|
|
|
"promise-polyfill": "^8.2.0",
|
2021-06-23 09:21:09 +02:00
|
|
|
"puppeteer": "^10.0.0",
|
2019-07-15 12:26:41 +02:00
|
|
|
"raw-loader": "^1.0.0",
|
2021-06-23 09:32:07 +02:00
|
|
|
"rollup": "^2.52.2",
|
2019-06-25 23:03:15 +02:00
|
|
|
"rollup-plugin-json": "^4.0.0",
|
2021-06-23 09:21:09 +02:00
|
|
|
"rollup-plugin-license": "^2.5.0",
|
2019-04-25 10:55:00 +02:00
|
|
|
"rollup-plugin-replace": "^2.2.0",
|
2020-12-02 00:34:28 +01:00
|
|
|
"rollup-plugin-terser": "^7.0.2",
|
2021-06-23 09:54:22 +02:00
|
|
|
"sinon": "^7.5.0",
|
2021-06-23 09:21:09 +02:00
|
|
|
"sinon-chai": "^3.7.0",
|
2021-06-23 11:19:08 +02:00
|
|
|
"webpack": "^4.46.0"
|
2014-03-11 15:54:36 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-06-25 10:02:12 +02:00
|
|
|
"bpmn-moddle": "^7.1.2",
|
2018-04-10 09:33:11 +02:00
|
|
|
"css.escape": "^1.5.1",
|
2021-10-25 15:34:47 +02:00
|
|
|
"diagram-js": "^7.6.0",
|
2021-06-17 11:46:45 +02:00
|
|
|
"diagram-js-direct-editing": "^1.6.3",
|
2019-06-17 14:35:11 +02:00
|
|
|
"ids": "^1.0.0",
|
2020-12-02 08:56:10 +01:00
|
|
|
"inherits": "^2.0.4",
|
|
|
|
"min-dash": "^3.5.2",
|
|
|
|
"min-dom": "^3.1.3",
|
2018-04-24 16:26:53 +02:00
|
|
|
"object-refs": "^0.3.0",
|
2020-12-02 08:56:10 +01:00
|
|
|
"tiny-svg": "^2.2.2"
|
2014-03-11 15:54:36 +01:00
|
|
|
}
|
|
|
|
}
|