forked from strophe/strophejs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.04 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.04 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
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
{
"name": "@pazznetwork/strophets",
"description": "Strophe.ts is an XMPP library for TypeScript",
"version": "0.0.8",
"homepage": "https://github.com/pazznetwork/strophets",
"repository": {
"type": "git",
"url": "git://github.com/pazznetwork/strophets"
},
"publishConfig": {
"access": "public"
},
"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",
"main": "dist/main/index.js",
"module": "dist/module/index.js",
"typings": "dist/main/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.module.json",
"test": "karma start"
},
"peerDependencies": {
"rxjs": "^7.5.7"
},
"devDependencies": {
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.3",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jsdoc": "^39.3.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-rxjs": "^5.0.2",
"jasmine-core": "4.4.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.1",
"karma-chrome-launcher": "3.1.1",
"karma-coverage": "2.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"karma-typescript": "5.5.3",
"karma-typescript-es6-transform": "5.5.3",
"prettier": "^2.7.1",
"typescript": "^4.6.4",
"rxjs": "^7.5.7"
}
}