forked from mbraak/jqTree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.1 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
86
{
"name": "jqtree",
"version": "1.8.2",
"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/ --ext .ts,.tsx",
"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.24.1",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@codecov/rollup-plugin": "0.0.1-beta.5",
"@playwright/test": "^1.43.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/dom": "^9.3.4",
"@testing-library/user-event": "^14.5.2",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/jest-axe": "^3.5.9",
"@types/jquery": "^3.5.29",
"@types/node": "^20.12.5",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"autoprefixer": "^10.4.19",
"babel-jest": "^29.7.0",
"babel-plugin-istanbul": "^6.1.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-playwright": "^1.5.4",
"eslint-plugin-testing-library": "^6.2.0",
"givens": "^1.3.9",
"graphql": "^16.8.1",
"jest": "^29.7.0",
"jest-axe": "^8.0.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"jsonfile": "^6.1.0",
"lodash": "^4.17.21",
"msw": "^2.2.13",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-load-config": "^5.0.3",
"postcss-nested": "^6.0.1",
"prettier": "^3.2.5",
"rollup": "^4.14.0",
"rollup-plugin-serve": "^3.0.0",
"tslib": "^2.6.2",
"typescript": "^5.4.4",
"undici": "^5.28.4"
}
}