-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
package.json
131 lines (131 loc) · 3.55 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "bpmn-js",
"version": "17.11.1",
"description": "A bpmn 2.0 toolkit and web modeler",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"test/util",
"test/helper",
"test/matchers",
"!.eslintrc",
"!lib/**/*.spec.ts"
],
"scripts": {
"all": "run-s lint test generate-types distro test:distro",
"lint": "eslint .",
"format": "run-s format:markdown 'lint -- --fix'",
"format:markdown": "remark . -qo",
"start": "cross-env SINGLE_START=modeler npm run dev",
"start:viewer": "cross-env SINGLE_START=viewer npm run dev",
"start:navigated-viewer": "cross-env SINGLE_START=navigated-viewer npm run dev",
"dev": "npm test -- --auto-watch --no-single-run",
"test": "karma start test/config/karma.unit.js",
"distro": "node tasks/build-distro.mjs",
"collect-translations": "cross-env COLLECT_TRANSLATIONS=1 npm test",
"generate-types": "run-s generate-types:*",
"generate-types:generate": "del-cli \"lib/**/*.d.ts\" && npx bio-dts -r lib",
"generate-types:test": "tsc --noEmit --noImplicitAny",
"test:distro": "node tasks/test-distro.mjs",
"postversion": "run-s distro test:distro",
"prepare": "run-s distro",
"prepublishOnly": "run-s generate-types"
},
"engines": {
"node": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js"
},
"keywords": [
"bpmn",
"bpmn-js",
"toolkit",
"web modeler",
"modeler",
"modeling",
"process modeling"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "SEE LICENSE IN LICENSE",
"sideEffects": [
"*.css"
],
"devDependencies": {
"@babel/core": "^7.25.8",
"@bpmn-io/a11y": "^0.1.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^6.0.0",
"@rollup/plugin-terser": "^0.4.4",
"babel-loader": "^9.2.1",
"babel-plugin-istanbul": "^7.0.0",
"bio-dts": "^0.11.0",
"bpmn-font": "^0.12.1",
"camunda-bpmn-moddle": "^4.0.1",
"chai": "4.1.2",
"chai-match": "^1.1.1",
"cpy": "^11.0.0",
"cross-env": "^7.0.3",
"del": "^8.0.0",
"del-cli": "^6.0.0",
"eslint": "^9.12.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"execa": "^9.0.0",
"file-drops": "^0.5.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.0",
"karma-debug-launcher": "^0.0.5",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.1",
"mocha": "^10.7.3",
"mocha-test-container-support": "0.2.0",
"npm-run-all2": "^7.0.0",
"puppeteer": "^23.0.0",
"remark-cli": "^12.0.0",
"remark-preset-bpmn-io": "^0.2.1",
"rollup": "^4.0.0",
"rollup-plugin-license": "^3.4.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"ts-expect": "^1.3.0",
"typescript": "^5.6.3",
"webpack": "^5.95.0"
},
"dependencies": {
"bpmn-moddle": "^9.0.1",
"diagram-js": "^14.11.2",
"diagram-js-direct-editing": "^3.0.1",
"ids": "^1.0.5",
"inherits-browser": "^0.1.0",
"min-dash": "^4.1.1",
"min-dom": "^4.2.1",
"tiny-svg": "^3.1.2"
},
"remarkConfig": {
"plugins": [
"preset-bpmn-io",
[
"lint-no-html",
false
]
]
}
}