-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "socket.io-routes",
"version": "0.2.0",
"description": "An alternative API for writing socket.io event handlers",
"main": "src/routes.js",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint --fix src/",
"release": "standard-version",
"test": "nyc ava src/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assisrafael/socket.io-routes.git"
},
"keywords": [
"socket.io",
"routes"
],
"author": "Igor Rafael <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/assisrafael/socket.io-routes/issues"
},
"homepage": "https://github.com/assisrafael/socket.io-routes#readme",
"devDependencies": {
"ava": "^0.16.0",
"coveralls": "^2.11.12",
"nyc": "^7.1.0",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"standard-version": "^8.0.2"
},
"dependencies": {
"lodash": "^4.14.1",
"pretty-hrtime": "^1.0.3",
"validator": "^5.5.0"
}
}