forked from legastero/stanza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.08 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": "stanza",
"description": "Modern XMPP in the browser, with a JSON API",
"version": "12.15.0",
"author": "Lance Stout <[email protected]>",
"bugs": "https://github.com/legastero/stanza/issues",
"contributors": [
"Philipp Hancke <[email protected]>",
"Steven Lloyd Watkin <[email protected]>"
],
"dependencies": {
"@types/async": "^3.0.3",
"@types/node": "^12.12.20",
"@types/punycode": "^2.1.0",
"@types/readable-stream": "^2.3.5",
"@types/ws": "^6.0.4",
"async": "^3.0.1",
"node-fetch": "^2.6.0",
"punycode": "^2.1.1",
"react-native-randombytes": "^3.5.3",
"readable-stream": "^2.3.6",
"sdp": "^3.0.2",
"stanza-shims": "^1.1.1",
"tslib": "^1.9.3",
"ws": "^7.2.1"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"expect": "^25.5.0",
"husky": "^4.2.5",
"jest": "^25.5.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"rollup": "^2.9.0",
"rollup-plugin-node-resolve": "^5.0.1",
"ts-jest": "^25.5.1",
"ts-node": "^8.5.4",
"typedoc": "^0.17.6",
"typescript": "^3.8.3",
"webpack": "^4.41.3",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.10"
},
"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,
"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:rollup": "rollup -c rollup.config.js",
"compile:webpack": "webpack --mode production",
"license-check": "npx license-checker --production --excludePrivatePackages --summary",
"lint": "eslint .",
"test": "jest",
"validate": "npm ls"
}
}