This repository has been archived by the owner on Jan 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.5 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
{
"name": "rxs.io",
"version": "1.1.0",
"description": "RxJS operators for socket.io",
"main": "dist/RxSocketIO.js",
"scripts": {
"build": "babel lib -d dist",
"lint": "eslint --ignore-path .gitignore . --ext .js",
"pretest": "npm run lint",
"test": "tape -r babel-register test/**/*.js | faucet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LongLiveCHIEF/RxSocket.io.git"
},
"keywords": [
"RxJS",
"socket.io",
"websockets",
"sockets"
],
"author": "Brian Vanderbusch <[email protected]> (https://github.com/LongLiveCHIEF)",
"contributors": [
"John Julien (https://github.com/jjjulien)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/HackerHappyHour/RxSocket.io/issues"
},
"homepage": "https://github.com/HackerHappyHour/RxSocket.io#readme",
"publishConfig": {
"access": "public"
},
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"extends": "@h3/eslint-config"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@h3/eslint-config": "^1.3.0",
"babel-cli": "^6.9.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.9.0",
"eslint": "^2.9.0",
"express": "^4.13.4",
"faucet": "0.0.1",
"tape": "^4.5.1"
},
"dependencies": {
"rxjs": "^5.0.0-beta.7",
"socket.io": "^1.4.6",
"socket.io-client": "^1.4.6",
"socket.io-parser": "^2.2.6"
}
}