-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
75 lines (75 loc) · 1.96 KB
/
package.json
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
72
73
74
75
{
"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": {
"test": "grunt test",
"dev": "grunt auto-build",
"all": "grunt"
},
"keywords": [
"bpmnjs-example"
],
"author": {
"name": "Ricardo Matias",
"url": "https://github.com/ricardomatias"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
},
{
"name": "Philipp Fromme",
"url": "https://github.com/philippfromme"
}
],
"license": "MIT",
"devDependencies": {
"brfs": "^1.2.0",
"browserify": "^13.0.0",
"chai": "^3.2.0",
"grunt": "~0.4.4",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-connect": "~1.0.2",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-jshint": "~1.0.0",
"grunt-contrib-less": "^1.0.1",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "~1.0.0",
"grunt-karma": "^1.0.0",
"jquery": "^2.1.1",
"karma": "^0.13.0",
"karma-browserify": "^5.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^0.1.2",
"karma-firefox-launcher": "^0.1.3",
"karma-ie-launcher": "^0.1.4",
"karma-mocha": "^0.2.0",
"karma-phantomjs-launcher": "^0.1.2",
"karma-safari-launcher": "^0.1.1",
"karma-spec-reporter": "0.0.26",
"load-grunt-tasks": "~3.2.0",
"mocha": "^2.2.5",
"mocha-test-container-support": "^0.2.0",
"stringify": "^3.1.0",
"time-grunt": "^0.3.2",
"watchify": "^3.7.0"
},
"dependencies": {
"bpmn-js": "^0.18.0",
"bpmn-js-properties-panel": "^0.11.1",
"camunda-bpmn-moddle": "^0.9.1",
"diagram-js": "^0.18.0",
"inherits": "^2.0.1",
"lodash": "^3.10.1",
"tiny-svg": "^0.1.0",
"edn": "https://github.com/josh/js-edn.git"
}
}