This repository has been archived by the owner on May 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.04 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
{
"name": "strophe.js",
"description": "Strophe.js is an XMPP library for JavaScript",
"version": "1.3.4",
"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": "dist/strophe.common.js",
"browser": "dist/strophe.umd.js",
"module": "dist/strophe.esm.js",
"unpkg": "dist/strophe.umd.min.js",
"scripts": {
"build": "rollup -c",
"lint": "make eslint",
"clean": "make clean",
"doc": "make doc",
"prepare": "yarpm run build"
},
"volo": {
"url": "https://raw.githubusercontent.com/strophe/strophejs/release-{version}/strophe.js"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"almond": "~0.3.0",
"es6-promise": "^4.1.0",
"eslint": "4.19.1",
"http-server": "^0.12.3",
"jquery": "^3.5.0",
"minimist": "^1.2.5",
"npm": "^5.7.1",
"qunitjs": "~1.16.0",
"requirejs": "2.3.5",
"rollup": "^1.12.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-uglify": "^6.0.4",
"run-headless-chromium": "^0.1.1",
"sinon": "^2.4.1",
"sinon-qunit": "^2.0.0",
"yarpm": "^0.2.1"
},
"dependencies": {
"abab": "^2.0.0",
"xvfb": "^0.3.0"
},
"optionalDependencies": {
"ws": "^7.0.0",
"xmldom": "^0.1.27"
}
}