forked from freegroup/draw2d
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.94 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.94 KB
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
{
"name": "draw2d",
"version": "1.0.39",
"description": "JS drag&drop lib",
"main": "dist/draw2d.js",
"types": "types/index.d.ts",
"typings": "types/index.d.ts",
"scripts": {
"build": "webpack --env dev && webpack --env build",
"watch": "webpack --progress --watch --env dev",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:changed": "jest --onlyChanged",
"test:browser": "playwright test",
"test:browser:headed": "playwright test --headed",
"test:browser:debug": "playwright test --debug"
},
"repository": {
"type": "git",
"url": "https://github.com/10log/draw2d"
},
"keywords": [
"draw2d",
"js",
"drag drop",
"library"
],
"author": "Andreas Herz",
"license": "MIT",
"bugs": {
"url": "https://github.com/freegroup/draw2d/issues"
},
"homepage": "https://github.com/freegroup/draw2d",
"files": [
"dist/",
"types/",
"LICENSE"
],
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-syntax-logical-assignment-operators": "^7.10.4",
"@babel/preset-env": "^7.26.0",
"@playwright/test": "^1.56.1",
"@types/jest": "^30.0.0",
"babel-jest": "^30.2.0",
"babel-loader": "^9.2.1",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-preset-modern-browsers": "^15.0.2",
"css-loader": "^7.1.2",
"eslint-webpack-plugin": "^4.2.0",
"glob": "^11.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jquery": "^3.7.1",
"playwright": "^1.56.1",
"script-loader": "^0.7.2",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"yargs": "^17.6.2"
},
"dependencies": {
"canvg": "^4.0.1",
"rgbcolor": "^1.0.1",
"shifty": "^3.0.3"
}
}