-
Notifications
You must be signed in to change notification settings - Fork 179
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.15 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.15 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "jqtree",
"version": "1.8.11",
"description": "Tree widget for jQuery",
"keywords": [
"jquery-plugin",
"tree"
],
"license": "Apache-2.0",
"browser": "./tree.jquery.js",
"main": "./tree.jquery.js",
"types": "./src/tree.jquery.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mbraak/jqtree"
},
"scripts": {
"ci": "pnpm lint && pnpm tsc && pnpm test",
"vitest": "vitest run --coverage --config config/vitest.config.ts",
"vitest-watch": "vitest --config config/vitest.config.ts",
"lint": "eslint src",
"production": "./config/production",
"devserver": "SERVE=true rollup --config config/rollup.config.mjs --watch",
"devserver-with-coverage": "COVERAGE=true SERVE=true rollup --config config/rollup.config.mjs",
"build-with-coverage": "COVERAGE=true rollup --config config/rollup.config.mjs",
"prettier": "prettier src/*.ts --write --tab-width 4",
"tsc": "tsc --noEmit --project tsconfig.json",
"playwright": "pnpm build-with-coverage && playwright test --config config/playwright.config.js",
"test": "pnpm vitest && pnpm playwright"
},
"peerDependencies": {
"jquery": ">= 3"
},
"devDependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.28.6",
"@babel/preset-env": "^7.28.6",
"@babel/preset-typescript": "^7.28.5",
"@cspell/eslint-plugin": "^9.6.0",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.57.0",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/user-event": "^14.6.1",
"@types/debug": "^4.1.12",
"@types/jquery": "^3.5.33",
"@types/node": "^25.0.10",
"@vitest/coverage-istanbul": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.6",
"autoprefixer": "^10.4.23",
"axe-core": "^4.11.1",
"babel-plugin-istanbul": "^7.0.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jest-extended": "^3.0.1",
"eslint-plugin-perfectionist": "^5.4.0",
"eslint-plugin-playwright": "^2.5.0",
"eslint-plugin-testing-library": "^7.15.4",
"givens": "^1.3.9",
"jest-extended": "^7.0.0",
"jsdom-testing-mocks": "^1.16.0",
"jsonfile": "^6.2.0",
"lodash": "^4.17.23",
"msw": "^2.12.7",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"postcss-load-config": "^6.0.1",
"postcss-nested": "^7.0.2",
"prettier": "^3.8.1",
"rollup": "^4.56.0",
"rollup-plugin-serve": "^3.0.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vitest": "^4.0.18"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"msw",
"unrs-resolver"
]
}
}