-
Notifications
You must be signed in to change notification settings - Fork 363
/
package.json
104 lines (104 loc) · 2.78 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "strophe.js",
"description": "Strophe.js is an XMPP library for JavaScript",
"version": "3.0.1",
"homepage": "http://strophe.im/strophejs",
"repository": {
"type": "git",
"url": "git://github.com/strophe/strophejs.git"
},
"keywords": [
"xmpp",
"message",
"bosh",
"websocket",
"browser"
],
"files": [
"src/",
"dist/",
"CHANGELOG.txt",
"LICENSE.txt",
"README.txt"
],
"author": "Jack Moffit (metajack)",
"contributors": [
"Nathan Zorn (thepug)",
"Andreas Guth (Gordin)",
"Anton Stroganov (Aeon)",
"Florian Zeitz (Florob)",
"Christopher Zorn (twonds)",
"dodo",
"Lee Boynton (lboynton)",
"Theo Cushion (theozaurus)",
"Brendon Crawford (brendoncrawford)",
"JC Brand (jcbrand)"
],
"license": "MIT",
"browserslist": ">1%, maintained node versions",
"main": "src/index.js",
"types": "src/types/index.d.ts",
"browser": "dist/strophe.umd.js",
"module": "dist/strophe.esm.js",
"unpkg": "dist/strophe.umd.min.js",
"exports": {
"node": {
"import": "./dist/strophe.esm.js",
"require": "./dist/strophe.common.js"
},
"types": "./src/types/index.d.ts",
"default": "./src/index.js"
},
"scripts": {
"types": "tsc",
"build": "rollup -c",
"lint": "eslint src/*.js tests/tests.js",
"clean": "make clean",
"doc": "make doc",
"test-node": "qunit --require ./tests/node tests/",
"test-browser": "karma start",
"test": "npm run test-node && npm run test-browser && npm run lint",
"prettier": "prettier --write src/*.js"
},
"volo": {
"url": "https://raw.githubusercontent.com/strophe/strophejs/release-{version}/strophe.js"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"almond": "~0.3.0",
"es6-promise": "^4.2.8",
"eslint": "^8.31.0",
"http-server": "^14.1.0",
"jsdoc": "^4.0.2",
"karma": "^6.3.17",
"karma-chrome-launcher": "^3.1.1",
"karma-qunit": "^4.1.2",
"karma-rollup-preprocessor": "^7.0.8",
"minimist": "^1.2.5",
"prettier": "^3.3.3",
"qunit": "2.19.4",
"rollup": "^2.32.1",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2",
"run-headless-chromium": "^0.1.1",
"sinon": "18.0.0",
"terser": "^5.10.0",
"typescript": "^5.1.6",
"xhr2": "^0.2.1"
},
"dependencies": {
"abab": "^2.0.3"
},
"optionalDependencies": {
"@types/ws": "^8.5.5",
"@xmldom/xmldom": "0.8.10",
"ws": "^8.5.0"
}
}