-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "svelte-bpmn",
"description": "Embed BPMN 2.0 diagrams in your Svelte app",
"version": "0.1.0",
"module": "dist/index.mjs",
"main": "dist/index.js",
"svelte": "src/index.js",
"files": [
"src",
"dist"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"lint": "eslint --ext js,svelte .",
"all": "run-s lint build"
},
"dependencies": {
"bpmn-js": "^8.7.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-node-resolve": "^13.0.4",
"eslint": "^7.31.0",
"eslint-plugin-bpmn-io": "^0.12.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-svelte3": "^3.2.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.55.1",
"rollup-plugin-svelte": "^7.1.0",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.41.0",
"svelte-loader": "^3.1.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/svelte-bpmn.git"
},
"keywords": [
"bpmn-js",
"bpmn",
"svelte"
],
"author": "Niklas Kiefer <niklas.kiefer@camunda.com> (https://github.com/pinussilvestrus)",
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
]
}