-
Notifications
You must be signed in to change notification settings - Fork 177
/
package.json
85 lines (85 loc) · 3 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
{
"name": "jqtree",
"version": "1.8.7",
"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",
"jest": "jest --coverage --no-cache --verbose --config ./config/jest.config.js",
"jest-watch": "jest --watch --config ./config/jest.config.js",
"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 jest && pnpm playwright"
},
"browserslist": [
"defaults"
],
"peerDependencies": {
"jquery": "^3"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@playwright/test": "^1.47.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/user-event": "^14.5.2",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.13",
"@types/jest-axe": "^3.5.9",
"@types/jquery": "^3.5.31",
"@types/node": "^22.7.4",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"babel-plugin-istanbul": "^7.0.0",
"eslint": "^9",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-perfectionist": "^3.8.0",
"eslint-plugin-playwright": "^1.6.2",
"givens": "^1.3.9",
"graphql": "^16.9.0",
"jest": "^29.7.0",
"jest-axe": "^9.0.0",
"jest-extended": "^4.0.2",
"jest-fixed-jsdom": "^0.0.4",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"msw": "^2.4.9",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-load-config": "^6.0.1",
"postcss-nested": "^6.2.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-serve": "^3.0.0",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"undici": "^5.28.4"
}
}