forked from xmppjs/xmpp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.58 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.58 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
{
"private": true,
"type": "module",
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/runtime": "^7.28.4",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-jest": "^30.2.0",
"babel-plugin-jsx-pragmatic": "^1.0.2",
"bytes": "^3.1.2",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.2.1",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-unicorn": "^62.0.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-extended": "^7.0.0",
"jsdom": "^27.3.0",
"lerna": "^9.0.3",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"rollup": "^4.53.3",
"selfsigned": "^5.2.0"
},
"scripts": {
"test": "node ./node_modules/.bin/jest --forceExit",
"e2e": "NODE_TLS_REJECT_UNAUTHORIZED=0 node ./node_modules/.bin/jest --forceExit --runInBand --config e2e.config.cjs",
"preversion": "make bundle"
},
"engines": {
"node": ">= 22.11"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"*.{js,cjs,mjs}": "eslint --cache --fix",
"*.{json,md,html,css,yaml,yml}": "prettier --write"
},
"browserslist": "defaults"
}