forked from xmppjs/xmpp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.59 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
{
"private": true,
"devDependencies": {
"@ava/babel": "^2.0.0",
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.16.5",
"@babel/plugin-transform-react-jsx": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/runtime": "^7.16.5",
"ava": "^3.15.0",
"babel-plugin-jsx-pragmatic": "^1.0.2",
"babel-plugin-transform-async-to-promises": "^0.8.18",
"babelify": "^10.0.0",
"babylon": "^6.18.0",
"browser-pack-flat": "^3.4.2",
"browserify": "^17.0.0",
"bundlesize": "^0.18.1",
"common-shakeify": "^0.6.2",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^39.0.0",
"exorcist": "^2.0.0",
"husky": "7",
"jsdom": "^19.0.0",
"lerna": "^4.0.0",
"lint-staged": "^12.1.4",
"node-fetch": "^2.6.6",
"prettier": "^2.5.1",
"selfsigned": "^2.1.1",
"sinon": "^12.0.1",
"uglify-js": "^3.14.5"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"test": "ava",
"lint": "eslint --cache .",
"preversion": "make bundle",
"prepare": "husky install"
},
"engines": {
"node": ">= 12.4",
"npm": ">= 7"
},
"workspaces": [
"packages/*"
],
"bundlesize": [
{
"path": "./packages/client/dist/xmpp.min.js",
"maxSize": "16 KB"
}
],
"lint-staged": {
"*.{js,cjs,mjs}": "eslint --cache --fix",
"*.{json,md,html,css,yaml,yml}": "prettier --write"
}
}