-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 863 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 863 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
{
"name": "bpmn-client-sample",
"version": "1.5.0",
"license": "MIT",
"main": "./dist/index.js",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"test": "mocha -R dot",
"setup": "bpmn-client-setup",
"cli": "bpmn-client-cli"
},
"description": "Client API for BPMN-Server webservices",
"keywords": [
"BPMN",
"BPMN 2.0",
"Workflow",
"Node.js",
"TypeScript"
],
"author": {
"name": "ralphhanna"
},
"dependencies": {
"bpmn-client": "^1.6.0",
"connect-busboy": "0.0.2",
"core-js": "^3.6.5",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@types/mime": "^1.3.1",
"@types/node": "^8.10.66",
"@types/serve-static": "^1.7.32",
"nodemon": "^2.0.19",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=12.0.0"
}
}