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