1{ 2 "name": "dmn-js", 3 "description": "A dmn toolkit and web modeler", 4 "version": "6.0.0", 5 "scripts": { 6 "test": "karma start", 7 "dev": "npm run test -- --no-single-run --auto-watch", 8 "test:distro": "node tasks/test-distro.js", 9 "distro": "node tasks/build-distro.js", 10 "prepublishOnly": "run-s build distro test:distro", 11 "build": "del-cli lib && babel -s -q -d lib src" 12 }, 13 "main": "./lib/index.js", 14 "author": { 15 "name": "Sebastian Stamm", 16 "url": "https://github.com/SebastianStamm" 17 }, 18 "contributors": [ 19 { 20 "name": "bpmn.io contributors", 21 "url": "https://github.com/bpmn-io" 22 } 23 ], 24 "repository": { 25 "type": "git", 26 "url": "https://github.com/bpmn-io/dmn-js" 27 }, 28 "license": "SEE LICENSE IN LICENSE", 29 "keywords": [ 30 "dmn", 31 "dmn-js", 32 "toolkit", 33 "web modeler", 34 "modeler", 35 "modeling", 36 "decision modeling" 37 ], 38 "devDependencies": { 39 "cpx": "^1.5.0", 40 "del": "^3.0.0", 41 "diagram-js": "^3.0.1", 42 "dmn-font": "^0.4.1", 43 "execa": "^1.0.0", 44 "min-dom": "^3.1.1", 45 "mkdirp": "^0.5.1", 46 "rollup": "^0.66.6", 47 "rollup-plugin-babel": "^3.0.3", 48 "rollup-plugin-commonjs": "^9.2.0", 49 "rollup-plugin-json": "^3.1.0", 50 "rollup-plugin-license": "^0.7.0", 51 "rollup-plugin-node-resolve": "^3.4.0", 52 "rollup-plugin-replace": "^2.1.0", 53 "rollup-plugin-uglify": "^6.0.0" 54 }, 55 "dependencies": { 56 "dmn-js-decision-table": "^6.0.0", 57 "dmn-js-drd": "^6.0.0", 58 "dmn-js-literal-expression": "^6.0.0", 59 "dmn-js-shared": "^6.0.0" 60 }, 61 "babel": { 62 "presets": [ 63 "env" 64 ] 65 } 66} 67