-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
{
"name": "node-red-contrib-zeebe",
"version": "0.7.0",
"description": "Zeebe nodes for Node-RED ",
"main": "index.js",
"scripts": {
"test": "jest --testPathIgnorePatterns integration --forceExit --detectOpenHandles",
"test:integration": "jest --forceExit --detectOpenHandles",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camunda-community-hub/node-red-contrib-zeebe.git"
},
"author": "pedesen",
"license": "MIT",
"bugs": {
"url": "https://github.com/camunda-community-hub/node-red-contrib-zeebe/issues"
},
"homepage": "https://github.com/camunda-community-hub/node-red-contrib-zeebe#readme",
"keywords": [
"node-red",
"zeebe",
"camunda",
"bpmn",
"workflow",
"microservice"
],
"dependencies": {
"uuid": "^8.3.2",
"zeebe-node": "1.3.4"
},
"devDependencies": {
"eslint": "^7.23.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"lint-staged": "^11.0.1",
"node-red": "^2.0.2",
"node-red-node-test-helper": "^0.2.7",
"prettier": "2.3.2"
},
"node-red": {
"nodes": {
"zeebe": "src/nodes/zeebe.js",
"process-instance": "src/nodes/process-instance.js",
"task-worker": "src/nodes/task-worker.js",
"complete-task": "src/nodes/complete-task.js",
"message": "src/nodes/message.js",
"start-message": "src/nodes/start-message.js",
"deploy": "src/nodes/deploy.js"
}
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"prettier --write"
]
}
}