forked from nikku/camunda-worker-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 973 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 973 Bytes
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
{
"name": "camunda-worker-node",
"version": "7.1.0",
"description": "Implement workers for Camunda BPM in NodeJS",
"main": "index.js",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"pretest": "camunda start",
"test": "mocha",
"posttest": "camunda stop"
},
"repository": {
"type": "git",
"url": "https://github.com/nikku/camunda-worker-node"
},
"keywords": [
"camunda",
"worker",
"task"
],
"author": "Nico Rehwaldt <git_nikku@nixis.de>",
"license": "MIT",
"dependencies": {
"debug": "^3.1.0",
"fetch-ponyfill": "^6.0.0",
"foreach": "^2.0.5",
"form-data": "^2.3.2",
"inherits": "^2.0.1",
"uuid": "^3.0.1",
"xtend": "^4.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.13.0",
"eslint-plugin-bpmn-io": "^0.5.2",
"mocha": "^5.0.1",
"npm-run-all": "^4.1.2",
"run-camunda": "^2.0.0"
},
"files": [
"lib",
"index.js"
]
}