-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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": "@Geeksltd/visualspec.shared.bpmn-js",
"version": "3.2.3",
"description": "bpmn-js module to create bpmn 2 diagram",
"private": false,
"scripts": {
"test": "echo \"Error: no test specified\"",
"clean": "rm -rf ./public && mkdir ./public",
"build": "webpack --config ./webpack.config.js --mode development --env development",
"build-prod": "webpack --config ./webpack.production.config.js --mode production",
"start": "webpack serve --config ./webpack.config.js --mode development --env development --progress",
"start-prod": "webpack serve --config ./webpack.production.config.js --mode production --env production --progress"
},
"files": [
"dist/**",
"src/**",
"package-lock.json",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Geeksltd/VisualSpec.Shared.bpmn-js.git"
},
"keywords": [
"VisualSpec"
],
"author": {
"name": "Geeksltd"
},
"contributors": [
{
"name": "Ehsan Vali",
"url": "https://github.com/Geeklsldt"
}
],
"engines": {
"yarn": ">= 1.0.0"
},
"bugs": {
"url": "https://github.com/Geeksltd/VisualSpec.Shared.bpmn-js/issues"
},
"license": "GPL-3.0",
"devDependencies": {
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.25.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"npm-run-all": "^4.1.5",
"raw-loader": "^4.0.2",
"sirv-cli": "^1.0.11",
"webpack": "^5.72.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.3"
},
"dependencies": {
"bpmn-js": "^17.3.0",
"bpmn-js-properties-panel": "^5.15.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/Geeksltd/"
}
}