-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.63 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
{
"name": "stanza",
"description": "Modern XMPP in the browser, with a JSON API",
"version": "12.3.3",
"author": "Lance Stout <[email protected]>",
"bugs": "https://github.com/legastero/stanza.io/issues",
"contributors": [
"Philipp Hancke <[email protected]>",
"Steven Lloyd Watkin <[email protected]>"
],
"dependencies": {
"@types/async": "^3.0.1",
"@types/node": "^12.7.4",
"@types/punycode": "^2.1.0",
"@types/readable-stream": "^2.3.3",
"@types/ws": "^6.0.2",
"async": "^3.0.1",
"fetch-cookie": "^0.7.3",
"node-fetch": "^2.6.0",
"punycode": "^2.1.1",
"react-native-randombytes": "^3.5.3",
"readable-stream": "^2.3.6",
"sdp": "^2.10.0",
"tslib": "^1.9.3",
"ws": "^7.1.1"
},
"homepage": "https://stanzajs.org",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --stage && npm run lint && npm test"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testRegex": "test/.*\\.ts$",
"testMatch": null,
"collectCoverage": true,
"coverageDirectory": "./coverage",
"coverageReporters": [
"text",
"html"
]
},
"keywords": [
"jingle",
"stanza",
"stanza.io",
"xmpp"
],
"license": "MIT",
"main": "./index.js",
"prettier": {
"tabWidth": 4,
"printWidth": 100,
"semi": true,
"singleQuote": true
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/legastero/stanza.io.git"
},
"browser": "./browser-module.js",
"module": "./module.js",
"react-native": "./rn-module.js",
"sideEffects": false,
"typings": "./index"
}