-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
44 lines (44 loc) · 987 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
{
"name": "bpmn-js-color-picker",
"version": "0.7.1",
"description": "A color picker for bpmn-js",
"scripts": {
"dev": "npm start",
"all": "run-s lint test",
"start": "webpack serve --open",
"lint": "eslint .",
"test": "echo 'no tests ;-)'"
},
"repository": "https://github.com/bpmn-io/bpmn-js-color-picker.git",
"keywords": [
"bpmn-js-example",
"bpmn-in-color",
"bpmn"
],
"module": "./colors/index.js",
"engines": {
"node": "*"
},
"author": {
"name": "Vladimirs Katusenoks",
"url": "https://github.com/vkatushenok"
},
"license": "MIT",
"devDependencies": {
"bpmn-js": "^18.0.0",
"copy-webpack-plugin": "^12.0.0",
"eslint": "^9.12.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"npm-run-all2": "^7.0.0",
"webpack": "^5.51.0",
"webpack-cli": "^6.0.0",
"webpack-dev-server": "^5.0.0"
},
"peerDependencies": {
"bpmn-js": ">= 14"
},
"files": [
"colors/*",
"index.js"
]
}