-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
54 lines (54 loc) · 1.13 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
{
"name": "bpmn-client",
"version": "2.2.4",
"license": "MIT",
"main":"./dist/index.js",
"scripts": {
"build": "tsc --build",
"compileRun": "tsc --build && node cli.js",
"cli": "ts-node src/cli",
"clean": "tsc --build --clean",
"start": "node cli.ts",
"test": "mocha -exit --config=test\\.mocharc.json"
},
"description": "Client API for BPMN-Server webservices",
"keywords": [
"BPMN",
"BPMN 2.0",
"Workflow",
"Node.js",
"TypeScript"
],
"author": {
"name": "ralphhanna"
},
"repository": {
"type": "git",
"url": "git+https:github.com/ralphhanna/bpmn-client.git"
},
"bin": {
"bpmn-client-setup": "./bin/setup.js",
"bpmn-client-cli": "./bin/cli.js"
},
"files": [
"bin",
"dist"
],
"dependencies": {
"axios": "^1.3.4",
"connect-busboy": "0.0.2",
"core-js": "^3.6.5",
"dotenv": "^16.0.1"
},
"devDependencies": {
"@types/mime": "^1.3.1",
"@types/node": "^12.12.7",
"@types/serve-static": "^1.7.32",
"nodemon": "^2.0.19",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=12.0.0"
}
}