-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"name": "uws-stream",
"version": "1.1.5",
"description": "Use websockets with the node streams API (based on uws). Works in browser and node",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.test.js",
"start": "gulp",
"build": "gulp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/charleslxh/uws-stream.git"
},
"keywords": [
"stream",
"uws"
],
"engines": {
"node": ">=4"
},
"author": "charles.liao",
"license": "MIT",
"bugs": {
"url": "https://github.com/charleslxh/uws-stream/issues"
},
"homepage": "https://github.com/charleslxh/uws-stream#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-stage-0": "^6.24.1",
"babel-runtime": "^6.26.0",
"express": "^4.16.3",
"fastify": "^1.6.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gutil": "^1.6.4",
"koa": "^2.5.1",
"mocha": "^5.2.0",
"polka": "^0.4.0"
},
"dependencies": {
"readable-stream": "^2.3.6",
"safe-buffer": "^5.1.2",
"uws": "10.148.0"
},
"browser": {
"uws": "./src/ws-fallback.js"
}
}