2021-06-03 05:45:51 +00:00
|
|
|
{
|
|
|
|
"name": "diagram-js-code-editor",
|
2021-06-21 16:50:19 +00:00
|
|
|
"version": "1.1.0",
|
2021-06-03 05:45:51 +00:00
|
|
|
"description": "A code-editor for diagram-js",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"module": "dist/index.esm.js",
|
|
|
|
"umd:main": "dist/diagram-code-editor.umd.js",
|
|
|
|
"source": "lib/index.js",
|
|
|
|
"scripts": {
|
|
|
|
"all": "run-s lint test distro",
|
|
|
|
"lint": "eslint .",
|
|
|
|
"dev": "npm test -- --auto-watch --no-single-run",
|
2021-06-03 09:20:57 +00:00
|
|
|
"test": "",
|
2021-06-03 05:45:51 +00:00
|
|
|
"distro": "run-s build test:build",
|
|
|
|
"build": "rollup -c",
|
2021-06-21 16:50:19 +00:00
|
|
|
"test:build": "",
|
|
|
|
"bump": "npm run build; npm publish"
|
2021-06-03 05:45:51 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-06-21 16:55:12 +00:00
|
|
|
"url": "git@github.com:sartography/diagram-js-code-editor.git"
|
2021-06-03 05:45:51 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"diagram-js",
|
|
|
|
"code-editor"
|
|
|
|
],
|
2021-06-21 16:55:12 +00:00
|
|
|
"author": "Nile Walker",
|
2021-06-03 05:45:51 +00:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2021-06-21 16:55:12 +00:00
|
|
|
"url": "https://github.com/sartography/diagram-js-code-editor/issues"
|
2021-06-03 05:45:51 +00:00
|
|
|
},
|
2021-06-21 16:55:12 +00:00
|
|
|
"homepage": "https://github.com/sartography/diagram-js-code-editor#readme",
|
2021-06-03 05:45:51 +00:00
|
|
|
"devDependencies": {
|
2021-06-03 08:46:06 +00:00
|
|
|
"@types/ace": "0.0.46",
|
2021-07-08 19:17:27 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.28.2",
|
|
|
|
"@typescript-eslint/parser": "^4.28.2",
|
2021-06-03 05:45:51 +00:00
|
|
|
"chai": "^4.2.0",
|
|
|
|
"diagram-js": "^5.0.2",
|
2021-07-08 19:17:27 +00:00
|
|
|
"eslint": "^7.30.0",
|
|
|
|
"eslint-config-google": "^0.14.0",
|
2021-06-03 05:45:51 +00:00
|
|
|
"eslint-plugin-bpmn-io": "^0.10.0",
|
2021-06-03 09:20:57 +00:00
|
|
|
"karma": "^6.3.3",
|
2021-06-03 05:45:51 +00:00
|
|
|
"karma-chrome-launcher": "^3.1.0",
|
|
|
|
"karma-firefox-launcher": "^1.2.0",
|
2021-06-03 09:20:57 +00:00
|
|
|
"karma-mocha": "^2.0.1",
|
2021-06-03 05:45:51 +00:00
|
|
|
"karma-phantomjs-launcher": "^1.0.4",
|
|
|
|
"karma-sinon-chai": "^2.0.2",
|
|
|
|
"karma-webpack": "^4.0.2",
|
|
|
|
"mocha": "^6.2.1",
|
|
|
|
"mocha-test-container-support": "^0.2.0",
|
|
|
|
"npm-run-all": "^4.1.5",
|
|
|
|
"puppeteer": "^3.0.0",
|
|
|
|
"raw-loader": "^3.1.0",
|
|
|
|
"rollup": "^1.22.0",
|
|
|
|
"rollup-plugin-commonjs": "^10.1.0",
|
|
|
|
"rollup-plugin-node-resolve": "^5.2.0",
|
|
|
|
"rollup-plugin-terser": "^5.1.2",
|
|
|
|
"sinon": "^7.5.0",
|
|
|
|
"sinon-chai": "^3.3.0",
|
|
|
|
"webpack": "^4.41.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-07-08 19:17:27 +00:00
|
|
|
"@popperjs/core": "^2.9.2",
|
2021-06-03 08:46:06 +00:00
|
|
|
"ace": "^1.3.0",
|
|
|
|
"ace-builds": "^1.4.12",
|
2021-07-08 19:17:27 +00:00
|
|
|
"bootstrap": "^5.0.2",
|
2021-06-03 05:45:51 +00:00
|
|
|
"codemirror": "^5.61.1",
|
|
|
|
"css.escape": "^1.5.1",
|
|
|
|
"min-dash": "^3.5.2",
|
|
|
|
"min-dom": "^3.1.1",
|
2021-07-08 19:17:27 +00:00
|
|
|
"tiny-svg": "^2.2.2",
|
|
|
|
"typescript-eslint": "0.0.1-alpha.0"
|
2021-06-03 05:45:51 +00:00
|
|
|
}
|
|
|
|
}
|