diagram-js-code-editor/package.json

66 lines
1.8 KiB
JSON

{
"name": "diagram-js-code-editor",
"version": "1.0.0",
"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",
"test": "karma start",
"distro": "run-s build test:build",
"build": "rollup -c",
"test:build": "karma start test/distro/karma.conf.js",
"prepublishOnly": "run-s distro"
},
"repository": {
"type": "git",
"url": "git@github.com:NWalker4483/diagram-js-code-editor.git"
},
"keywords": [
"diagram-js",
"code-editor"
],
"author": "Philipp Fromme",
"license": "MIT",
"bugs": {
"url": "https://github.com/NWalker4483/diagram-js-code-editor/issues"
},
"homepage": "https://github.com/NWalker4483/diagram-js-code-editor#readme",
"devDependencies": {
"chai": "^4.2.0",
"diagram-js": "^5.0.2",
"eslint": "^6.5.0",
"eslint-plugin-bpmn-io": "^0.10.0",
"karma": "^4.3.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^1.2.0",
"karma-mocha": "^1.3.0",
"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": {
"codemirror": "^5.61.1",
"css.escape": "^1.5.1",
"min-dash": "^3.5.2",
"min-dom": "^3.1.1",
"tiny-svg": "^2.2.2"
}
}