-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "ubk",
"version": "7.0.3",
"description": "micro message broker",
"main": "index.js",
"scripts": {
"coveralls": "npm install coveralls && node ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info",
"discify": "browserify --ignore cnyks --node -p discify index.js | discify-reporter --ir://run --source=disc/graph.json",
"cover": "nyc --temp-directory coverage/.nyc_output --reporter text-summary --reporter html --reporter lcov mocha",
"mocha": "mocha -b test",
"test": "npm run eslint && npm run cover",
"eslint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/131/ubk.git"
},
"keywords": [
"message",
"tcp",
"ws"
],
"author": "Francois Leurent <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/131/ubk/issues"
},
"homepage": "https://github.com/131/ubk",
"dependencies": {
"debug": "^4.3.4",
"eventemitter-async": "^3.0.1",
"mout": "^1.2.4",
"nyks": "^6.11.0",
"socketwrap": "^0.9.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-ivs": "^4.0.1",
"expect.js": "^0.3.1",
"mocha": "^3.1.2",
"nyc": "^13.0.1",
"ws": "^1.1.0"
}
}