-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
66 lines (66 loc) · 1.7 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
{
"name": "table-js",
"version": "9.1.0",
"scripts": {
"all": "run-s lint test build",
"dev": "karma start --no-single-run --auto-watch --log-level debug",
"lint": "eslint .",
"test": "karma start",
"build": "del-cli lib && babel -s -d lib src",
"auto-build": "babel -s -d lib src --watch",
"prepublishOnly": "run-s build"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/table-js"
},
"engines": {
"node": "*"
},
"sideEffects": false,
"main": "./lib/index.js",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.19.3",
"babel-loader": "^9.0.0",
"babel-plugin-inferno": "^5.1.0",
"chai": "^4.3.10",
"del-cli": "^6.0.0",
"diagram-js": "^14.0.0",
"eslint": "^9.12.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"inferno": "^5.6.2",
"inferno-test-utils": "^5.6.2",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-ie-launcher": "^1.0.0",
"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-all2": "^7.0.0",
"puppeteer": "^23.0.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"webpack": "^5.74.0"
},
"dependencies": {
"didi": "^10.0.0",
"ids": "^1.0.0",
"min-dash": "^4.0.0",
"min-dom": "^4.0.3",
"selection-ranges": "^4.0.0"
},
"files": [
"lib"
],
"peerDependencies": {
"diagram-js": "^11.3.0 || ^12 || ^13.0.0 || ^14.0.0",
"inferno": "^5.0.5"
}
}