forked from xmppjs/xmpp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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
{
"private": true,
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/runtime": "^7.6.2",
"ava": "^2.4.0",
"babel-plugin-jsx-pragmatic": "^1.0.2",
"babel-plugin-transform-async-to-promises": "^0.8.14",
"babelify": "^10.0.0",
"babylon": "^6.18.0",
"browser-pack-flat": "^3.4.2",
"browserify": "^16.5.0",
"bundlesize": "^0.18.0",
"common-shakeify": "^0.6.2",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-config-xo": "^0.27.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^12.0.2",
"exorcist": "^1.0.1",
"jsdom": "^15.1.1",
"lerna": "^3.16.4",
"node-fetch": "^2.6.0",
"prettier": "^1.18.2",
"sinon": "^7.5.0",
"uglify-js": "^3.6.0"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"test": "ava",
"lint": "eslint .",
"preversion": "make bundle"
},
"engines": {
"node": ">= 10.0.0",
"yarn": ">= 1.0.0"
},
"workspaces": [
"packages/*"
],
"bundlesize": [
{
"path": "./packages/client/dist/xmpp.min.js",
"maxSize": "15 KB"
}
]
}