-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1001 Bytes
/
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
{
"name": "camunda-modeler-provisioner",
"version": "0.3.0",
"description": "",
"main": "lib/index.js",
"bin": {
"camunda-modeler": "bin/index.js"
},
"scripts": {
"lint": "esw bin lib",
"lint-watch": "esw -w bin lib",
"test": "node --test test",
"test-watch": "node --test --watch test",
"test-resources": "node scripts/generate-test-resources.js"
},
"repository": {
"type": "git",
"url": "git+github.com/AlexanderSkrock/camunda-modeler-provisioner.git"
},
"keywords": [
"camunda",
"modeler"
],
"author": "Alenxander Skrock",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"cosmiconfig": "^8.3.6",
"file-type": "16.5.4",
"node-stream-zip": "^1.15.0",
"tar": "^6.2.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"eslint": "^8.49.0",
"eslint-config-standard": "^17.1.0",
"eslint-watch": "^8.0.0"
},
"files": [
"bin",
"lib"
]
}