forked from adonisjs/adonis-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.57 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
64
65
66
67
68
69
70
71
72
73
{
"name": "@adonisjs/websocket",
"version": "1.0.12",
"description": "websocket server for Adonis framework",
"main": "index.js",
"files": [
"config",
"providers",
"src",
"clusterPubSub.js",
"instructions.js",
"instructions.md"
],
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"pretest": "npm run lint",
"test": "nyc japa",
"test:win": "node ./node_modules/japa-cli/index.js",
"commit": "git-cz",
"lint": "standard",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"adonisjs",
"adonis",
"websocket",
"socket"
],
"author": "virk",
"license": "MIT",
"devDependencies": {
"@adonisjs/fold": "^4.0.9",
"@adonisjs/framework": "^5.0.8",
"@adonisjs/mrm-preset": "^1.0.9",
"@adonisjs/sink": "^1.0.16",
"commitizen": "^2.10.1",
"coveralls": "^3.0.2",
"cz-conventional-changelog": "^2.1.0",
"japa": "^1.0.6",
"japa-cli": "^1.0.1",
"mrm": "^1.2.1",
"nyc": "^12.0.2",
"pkg-ok": "^2.2.0",
"standard": "^11.0.1",
"test-console": "^1.1.0"
},
"dependencies": {
"@adonisjs/generic-exceptions": "^2.0.1",
"@adonisjs/middleware-base": "^1.0.0",
"@adonisjs/websocket-packet": "^1.0.6",
"cuid": "^2.1.1",
"debug": "^3.1.0",
"emittery": "^0.4.1",
"macroable": "^1.0.0",
"ws": "^5.2.2"
},
"nyc": {
"exclude": [
"test",
"japaFile.js"
]
},
"standard": {
"ignore": [
"config"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}