-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.12 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.12 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
55
{
"name": "ious",
"version": "1.0.1",
"description": "use express middleware on socket.io namespaces",
"author": {
"name": "Buster Collings",
"email": "busterc@gmail.com",
"url": "https://about.me/buster"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"socket",
"io",
"socket-io",
"socket.io",
"middleware",
"express"
],
"devDependencies": {
"async-each-series": "^1.1.0",
"cookie-parser": "^1.4.3",
"coveralls": "^2.12.0",
"eslint": "^3.18.0",
"eslint-config-xo-space": "^0.16.0",
"express": "^4.15.2",
"jest": "^19.0.2",
"jest-cli": "^19.0.1",
"jsonwebtoken": "^7.3.0",
"nsp": "^2.6.3",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3"
},
"scripts": {
"prepublish": "nsp check",
"pretest": "eslint . --fix",
"test": "jest --coverage"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
},
"repository": "busterc/ious",
"jest": {
"testEnvironment": "node"
},
"license": "ISC"
}