forked from camunda/camunda-commons-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.85 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"private": true,
"name": "camunda-commons-ui",
"version": "7.12.0-SNAPSHOT",
"description": "Common files for camunda BPM platform UIs",
"main": "index.js",
"gruntConfig": {
"connectPort": 8070,
"livereloadPort": 8071
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dependencies": "license-checker --production --json --relativeLicensePath"
},
"repository": {
"type": "git",
"url": "git://github.com/camunda/camunda-commons-ui.git"
},
"keywords": [
"camunda"
],
"author": "Daniel Meyer <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/camunda/camunda-commons-ui/issues"
},
"homepage": "https://github.com/camunda/camunda-commons-ui",
"dependencies": {
"angular-animate": "1.7.8",
"angular-cookies": "1.7.8",
"angular-data-depend": "git://github.com/camunda-third-party/angular-data-depend#1.0.0-camunda",
"angular-loader": "1.7.8",
"angular-mocks": "1.7.8",
"angular-moment": "1.3.0",
"angular-resource": "1.7.8",
"angular-route": "1.7.8",
"angular-sanitize": "1.7.8",
"angular-scenario": "1.7.8",
"angular-touch": "1.7.8",
"angular-translate": "2.18.1",
"bootstrap": "3.4.1",
"bpmn-font": "0.8.0",
"bpmn-js": "3.4.3",
"camunda-bpm-sdk-js": "git://github.com/camunda/camunda-bpm-sdk-js#master",
"clipboard": "2.0.4",
"cmmn-js": "0.18.1",
"dmn-js": "6.3.3",
"jquery": "3.4.1",
"lodash": "4.17.14"
},
"devDependencies": {
"@babel/core": "7.4.5",
"@babel/preset-env": "7.4.5",
"acorn": "6.1.1",
"babelify": "10.0.0",
"brfs": "2.0.2",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"chai-spies": "1.0.0",
"chai-truthy": "1.0.0",
"core-js": "3.1.4",
"eslint": "5.16.0",
"eslint-config-prettier": "4.3.0",
"eslint-plugin-camunda-licensed": "0.4.2",
"eslint-plugin-prettier": "3.1.0",
"grunt": "1.0.4",
"grunt-browserify": "5.3.0",
"grunt-contrib-connect": "2.0.0",
"grunt-contrib-less": "2.0.0",
"grunt-eslint": "21.0.0",
"grunt-karma": "3.0.1",
"grunt-newer": "1.3.0",
"grunt-protractor-runner": "5.0.0",
"husky": "2.3.0",
"karma": "4.0.1",
"karma-browserify": "6.0.0",
"karma-chrome-launcher": "2.2.0",
"karma-firefox-launcher": "1.1.0",
"karma-junit-reporter": "1.2.0",
"karma-mocha": "1.3.0",
"karma-phantomjs-launcher": "1.0.4",
"license-checker": "25.0.1",
"lint-staged": "8.1.7",
"load-grunt-tasks": "4.0.0",
"mocha": "6.1.3",
"prettier": "1.17.1",
"protractor": "5.4.2",
"xunit-file": "1.0.0"
},
"optionalDependencies": {
"grunt-contrib-watch": "1.1.0",
"marked": "0.6.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}