-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 889 Bytes
/
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
{
"name": "socket.io-postgres",
"version": "1.0.0",
"description": "PostgreSQL adapter for providing cluster aware messaging with socket.io",
"main": "index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"expect.js": "^0.3.1",
"mocha": "^2.5.3",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8"
},
"scripts": {
"test": "mocha",
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/section6nz/socket.io-postgres.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/section6nz/socket.io-postgres/issues"
},
"homepage": "https://github.com/section6nz/socket.io-postgres#readme",
"dependencies": {
"pg-pubsub": "^0.3.0"
}
}