-
Notifications
You must be signed in to change notification settings - Fork 251
/
package.json
91 lines (91 loc) · 2.64 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
{
"name": "stanza",
"description": "Modern XMPP in the browser, with a JSON API",
"version": "12.20.0",
"author": "Lance Stout <lancestout@gmail.com>",
"bugs": "https://github.com/legastero/stanza/issues",
"contributors": [
"Philipp Hancke <fippo@andyet.net>",
"Steven Lloyd Watkin <lloyd@evilprofessor.co.uk>"
],
"dependencies": {
"@types/async": "^3.2.5",
"@types/node": "^14.14.36",
"@types/punycode": "^2.1.0",
"@types/ws": "^7.4.0",
"async": "^3.2.1",
"node-fetch": "^2.6.2",
"punycode": "^2.1.1",
"sdp": "^3.0.2",
"tslib": "^2.2.0",
"ws": "^8.2.2"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"expect": "^27.1.1",
"jest": "^27.1.1",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typedoc": "^0.21.9",
"typescript": "^4.2.4",
"webpack": "^5.72.1",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0"
},
"homepage": "https://stanzajs.org",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testRegex": "test/.*\\.ts$",
"testMatch": null,
"collectCoverage": true,
"collectCoverageFrom": [
"./src/**/*.ts"
],
"coverageDirectory": "./coverage",
"coverageReporters": [
"text",
"html"
]
},
"keywords": [
"jingle",
"stanza",
"stanza.io",
"xmpp"
],
"license": "MIT",
"main": "./dist/cjs/index.js",
"prettier": {
"tabWidth": 4,
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/legastero/stanza.git"
},
"scripts": {
"build": "ts-node scripts/build",
"build:docs": "ts-node scripts/build-docs",
"clean": "rimraf dist",
"compile": "tsc -p .",
"compile:module": "tsc -p . --outDir ./dist/es --target es2015 --module es2015",
"compile:webpack": "webpack --mode production",
"license-check": "npx license-checker --production --excludePrivatePackages --summary",
"lint": "eslint .",
"test": "jest",
"validate": "npm ls"
}
}