forked from bpmn-io/bpmn-js-example-custom-shapes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.86 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "custom-elements-example",
"version": "0.0.0",
"description": "An example on how to create a custom elements with bpmn-js",
"main": "app/app.js",
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-examples"
},
"scripts": {
"lint": "eslint .",
"auto-test": "npm test -- --auto-watch --no-single-run",
"test": "karma start",
"bundle": "grunt build",
"dev": "grunt auto-build",
"all": "run-s lint test bundle"
},
"keywords": [
"bpmnjs-example"
],
"author": {
"name": "Ricardo Matias",
"url": "https://github.com/ricardomatias"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babelify": "^8.0.0",
"browserify": "^16.1.0",
"chai": "^4.1.2",
"eslint": "^4.18.1",
"eslint-plugin-bpmn-io": "^0.4.1",
"grunt": "~0.4.4",
"grunt-browserify": "^4.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-connect": "~0.11.2",
"grunt-contrib-copy": "~0.8.1",
"grunt-contrib-watch": "~0.6.1",
"karma": "^2.0.0",
"karma-browserify": "^5.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.26",
"load-grunt-tasks": "~3.2.0",
"mocha": "^5.0.1",
"mocha-test-container-support": "^0.2.0",
"npm-run-all": "^4.1.2",
"stringify": "^3.1.0",
"time-grunt": "^0.3.2",
"watchify": "^3.10.0"
},
"dependencies": {
"bpmn-js": "^3.2.2",
"diagram-js": "^3.0.0",
"inherits": "^2.0.1",
"min-dash": "^3.0.0",
"tiny-svg": "^2.0.0"
}
}