forked from pinussilvestrus/postit-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.06 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "postit-js-core",
"version": "1.1.0",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"test": "karma start karma.conf.js",
"dev": "npm test -- --auto-watch --no-single-run",
"sync:live": "git checkout live && git merge main && git push origin live && git checkout main",
"start:example": "npm start --workspace=example"
},
"repository": {
"type": "git",
"url": "https://github.com/pinussilvestrus/postit-js"
},
"files": [
".babelrc",
"index.js",
"assets",
"dist",
"lib",
"test/util",
"test/helper",
"test/matchers",
"!.eslintrc"
],
"keywords": [
"diagram-js",
"toolkit",
"web modeler",
"post-it",
"brainstorming"
],
"author": {
"name": "Niklas Kiefer",
"url": "https://github.com/pinussilvestrus"
},
"license": "SEE LICENSE IN LICENSE",
"sideEffects": [
"*.css"
],
"workspaces": [
"example"
],
"devDependencies": {
"chai": "^4.3.7",
"chai-match": "^1.1.1",
"eslint": "^8.42.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"eslint-plugin-import": "^2.27.5",
"file-loader": "^6.2.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-debug-launcher": "0.0.5",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^21.0.0",
"raw-loader": "^4.0.2",
"sinon": "^17.0.0",
"sinon-chai": "^3.7.0",
"webpack": "^5.87.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"@ibm/plex": "^6.3.0",
"bpmn-font": "^0.12.0",
"css.escape": "^1.5.1",
"diagram-js": "^12.2.0",
"diagram-js-direct-editing": "^2.0.0",
"ids": "^1.0.0",
"inherits-browser": "^0.1.0",
"min-dash": "^4.1.1",
"min-dom": "^4.1.0",
"moddle": "^6.2.3",
"moddle-xml": "^10.1.0",
"object-refs": "^0.3.0",
"tiny-svg": "^3.0.1"
}
}