-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 874 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 874 Bytes
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
{
"name": "wizzy-server",
"version": "0.0.14",
"description": "WebSocket Generic Server",
"main": "index.js",
"author": "Michael Chacaton <mchacaton@chaksoft.eu>",
"license": "GPL-3.0",
"dependencies": {
"bufferutil": "^4.0.1",
"bunyan": "^1.8.12",
"jsonschema": "^1.2.4",
"moment": "^2.24.0",
"uuid": "^3.3.2",
"ws": "^7.1.0"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"cross-env": "^5.2.0",
"eslint": "^6.0.1",
"eslint-plugin-async-await": "^0.0.0",
"eslint-plugin-babel": "^5.3.0",
"jest": "^24.8.0",
"prettier-eslint": "^9.0.0"
},
"scripts": {
"lint": "cross-env eslint index.js lib/*.js",
"test": "yarn lint && cross-env NODE_ENV=test jest --detectOpenHandles tests/*.spec.js"
},
"repository": {
"url": "https://github.com/ChakSoft/wizzy-server",
"type": "git"
}
}