|
1 | 1 | { |
2 | 2 | "name": "cytoscape-bubblesets", |
3 | 3 | "description": "Cytoscape.js plugin for rendering bubblesets", |
4 | | - "version": "3.2.1", |
| 4 | + "version": "3.2.2", |
5 | 5 | "author": { |
6 | 6 | "name": "Samuel Gratzl", |
7 | 7 | "email": "sam@sgratzl.com", |
|
22 | 22 | }, |
23 | 23 | "global": "CytoscapeBubbleSets", |
24 | 24 | "dependencies": { |
25 | | - "@types/cytoscape": "^3.19.16", |
| 25 | + "@types/cytoscape": "^3.21.2", |
26 | 26 | "@types/lodash.throttle": "^4.1.9", |
27 | | - "bubblesets-js": "^2.3.0", |
| 27 | + "bubblesets-js": "^2.3.2", |
28 | 28 | "lodash.throttle": "^4.1.1" |
29 | 29 | }, |
30 | 30 | "peerDependencies": { |
|
50 | 50 | "src/**/*.tsx" |
51 | 51 | ], |
52 | 52 | "devDependencies": { |
53 | | - "@babel/core": "^7.23.7", |
54 | | - "@babel/preset-env": "^7.23.8", |
| 53 | + "@babel/core": "^7.24.7", |
| 54 | + "@babel/preset-env": "^7.24.7", |
55 | 55 | "@rollup/plugin-babel": "^6.0.4", |
56 | | - "@rollup/plugin-commonjs": "^25.0.7", |
| 56 | + "@rollup/plugin-commonjs": "^26.0.1", |
57 | 57 | "@rollup/plugin-node-resolve": "^15.2.3", |
58 | | - "@rollup/plugin-replace": "^5.0.5", |
| 58 | + "@rollup/plugin-replace": "^5.0.7", |
59 | 59 | "@rollup/plugin-typescript": "^11.1.6", |
60 | | - "@types/jest": "^29.5.11", |
61 | | - "@typescript-eslint/eslint-plugin": "^6.19.0", |
62 | | - "@typescript-eslint/parser": "^6.19.0", |
63 | | - "@yarnpkg/sdks": "^3.1.0", |
64 | | - "cytoscape": "^3.28.1", |
65 | | - "cytoscape-layers": "^2.4.3", |
66 | | - "eslint": "^8.56.0", |
67 | | - "eslint-config-airbnb-typescript": "^17.1.0", |
| 60 | + "@types/jest": "^29.5.12", |
| 61 | + "@typescript-eslint/eslint-plugin": "^7.12.0", |
| 62 | + "@typescript-eslint/parser": "^7.12.0", |
| 63 | + "@yarnpkg/sdks": "^3.1.2", |
| 64 | + "cytoscape": "^3.29.2", |
| 65 | + "cytoscape-layers": "^2.4.4", |
| 66 | + "eslint": "^8.57.0", |
| 67 | + "eslint-config-airbnb-typescript": "^18.0.0", |
68 | 68 | "eslint-config-prettier": "^9.1.0", |
69 | 69 | "eslint-config-react-app": "^7.0.1", |
70 | 70 | "eslint-plugin-flowtype": "^8.0.3", |
71 | 71 | "eslint-plugin-import": "^2.29.1", |
72 | 72 | "eslint-plugin-jsx-a11y": "^6.8.0", |
73 | 73 | "eslint-plugin-prettier": "^5.1.3", |
74 | | - "eslint-plugin-react": "^7.33.2", |
75 | | - "eslint-plugin-react-hooks": "^4.6.0", |
| 74 | + "eslint-plugin-react": "^7.34.2", |
| 75 | + "eslint-plugin-react-hooks": "^4.6.2", |
76 | 76 | "jest": "^29.7.0", |
77 | | - "prettier": "^3.2.4", |
78 | | - "rimraf": "^5.0.5", |
79 | | - "rollup": "^4.9.6", |
80 | | - "rollup-plugin-dts": "^6.1.0", |
| 77 | + "prettier": "^3.3.1", |
| 78 | + "rimraf": "^5.0.7", |
| 79 | + "rollup": "^4.18.0", |
| 80 | + "rollup-plugin-dts": "^6.1.1", |
81 | 81 | "rollup-plugin-terser": "^7.0.2", |
82 | | - "ts-jest": "^29.1.1", |
83 | | - "tslib": "^2.6.2", |
84 | | - "typedoc": "^0.25.7", |
85 | | - "typescript": "^5.3.3" |
| 82 | + "ts-jest": "^29.1.4", |
| 83 | + "tslib": "^2.6.3", |
| 84 | + "typedoc": "^0.25.13", |
| 85 | + "typescript": "^5.4.5" |
86 | 86 | }, |
87 | 87 | "resolutions": { |
88 | 88 | "@typescript-eslint/eslint-plugin": "^6.19.0", |
|
94 | 94 | "start": "yarn run watch", |
95 | 95 | "watch": "rollup -c -w", |
96 | 96 | "build": "rollup -c", |
97 | | - "test": "jest --passWithNoTests", |
98 | | - "test:watch": "jest --passWithNoTests --watch", |
99 | | - "test:coverage": "jest --passWithNoTests --coverage", |
| 97 | + "test": "yarn node --experimental-vm-modules $(yarn bin jest) --passWithNoTests --detectOpenHandles --forceExit", |
| 98 | + "test:watch": "yarn run test --watch", |
| 99 | + "test:coverage": "yarn run test --coverage", |
100 | 100 | "lint": "yarn run eslint && yarn run prettier", |
101 | 101 | "fix": "yarn run eslint:fix && yarn run prettier:write", |
102 | 102 | "prettier:write": "prettier \"*\" \"*/**\" --write", |
|
106 | 106 | "docs": "typedoc src/index.ts", |
107 | 107 | "prepare": "yarn run build" |
108 | 108 | }, |
109 | | - "packageManager": "yarn@4.0.2" |
| 109 | + "packageManager": "yarn@4.2.2" |
110 | 110 | } |
0 commit comments