-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.51 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
56
57
58
59
60
61
62
63
64
{
"name": "@geut/socket.io-streamify",
"version": "1.0.0",
"description": "Convert a socket.io socket into a stream.",
"main": "index.js",
"browser": "browser.js",
"files": [
"lib",
"index.js",
"browser.js"
],
"scripts": {
"test": "jest --passWithNoTests",
"posttest": "npm run lint",
"lint": "eslint \"**/*.js\"",
"version": "chan release --allow-yanked ${npm_package_version} && git add .",
"prepublishOnly": "npm test"
},
"dependencies": {
"duplexify": "^4.1.1",
"readable-stream": "^3.4.0",
"safe-buffer": "^5.2.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
},
"devDependencies": {
"@geut/chan": "^2.0.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"get-port": "^5.0.0",
"jest": "^24.8.0",
"wait-for-expect": "^2.0.0"
},
"jest": {
"testMatch": [
"**/tests/**/*.test.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/socket.io-streamify.git"
},
"keywords": [
"socket.io",
"stream",
"geut"
],
"author": {
"name": "GEUT",
"email": "contact@geutstudio.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/socket.io-streamify/issues"
},
"homepage": "https://github.com/geut/socket.io-streamify#readme",
"publishConfig": {
"access": "public"
}
}