forked from legastero/stanza
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.69 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
105
106
107
108
109
110
111
112
113
{
"name": "stanza",
"description": "Modern XMPP in the browser, with a JSON API",
"version": "11.3.0",
"author": "Lance Stout <[email protected]>",
"stanzajs_env_mappings": {
"browser": {
"./dist/es/lib/async/index.js": "./dist/es/lib/async/index-browser.js",
"./dist/es/lib/crypto/index.js": "./dist/es/lib/crypto/index-browser.js",
"./dist/es/lib/fetch/index.js": "./dist/es/lib/fetch/index-browser.js",
"./dist/es/lib/stringprep/index.js": "./dist/es/lib/stringprep/index-browser.js",
"./dist/es/lib/ws/index.js": "./dist/es/lib/ws/index-browser.js"
},
"react-native": {
"./dist/es/lib/async/index.js": "./dist/es/lib/async/index-browser.js",
"./dist/es/lib/crypto/index.js": "./dist/es/lib/crypto/index-react-native.js",
"./dist/es/lib/fetch/index.js": "./dist/es/lib/fetch/index-browser.js",
"./dist/es/lib/stringprep/index.js": "./dist/es/lib/stringprep/index-browser.js",
"./dist/es/lib/ws/index.js": "./dist/es/lib/ws/index-browser.js"
}
},
"bugs": "https://github.com/legastero/stanza.io/issues",
"contributors": [
"Philipp Hancke <[email protected]>",
"Steven Lloyd Watkin <[email protected]>"
],
"dependencies": {
"@types/async": "^2.4.0",
"@types/node": "^11.13.6",
"@types/readable-stream": "^2.3.1",
"@types/ws": "^6.0.1",
"async": "^2.6.2",
"async-es": "^2.6.2",
"cross-fetch": "^3.0.2",
"jxt": "^4.0.2",
"punycode": "^2.1.1",
"react-native-randombytes": "^3.5.2",
"readable-stream": "^3.3.0",
"sdp": "^2.9.0",
"tslib": "^1.9.3",
"ws": "^6.1.2"
},
"devDependencies": {
"husky": "^2.1.0",
"nyc": "^14.0.0",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0",
"rimraf": "^2.6.2",
"rollup": "^1.0.0",
"rollup-plugin-node-resolve": "^4.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.8.0",
"ts-node": "^8.0.3",
"tslint": "^5.14.0",
"typescript": "^3.4.1",
"webpack": "^4.25.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2"
},
"homepage": "https://stanzajs.org",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --stage && npm run lint && npm test"
}
},
"keywords": [
"jingle",
"stanza",
"stanza.io",
"xmpp"
],
"license": "MIT",
"main": "./dist/cjs/index.js",
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"prettier": {
"tabWidth": 4,
"printWidth": 100,
"semi": true,
"singleQuote": true
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/legastero/stanza.io.git"
},
"scripts": {
"build": "node scripts/build",
"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:rollup-browser": "rollup -c rollup-browser.config.js",
"compile:rollup-react-native": "rollup -c rollup-react-native.config.js",
"compile:webpack": "webpack --mode production",
"lint": "tslint -p .",
"test": "nyc ts-node --files test/index.js | tap-spec && nyc report --reporter=text",
"validate": "npm ls"
}
}