-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 876 Bytes
/
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
{
"name": "nats-socket.io",
"version": "1.0.0",
"description": "NATS socket.io proxy",
"main": "src/proxy.js",
"repository": "https://github.com/bigslycat/nats-socket.io",
"author": "Pavel Tereschenko <[email protected]> (https://github.com/bigslycat)",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint .",
"build": "pkg -t node12-alpine-x64 -o bin/proxy src/proxy.js"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {
"nats": "^1.4.0",
"pkg": "^4.4.3",
"socket.io": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"prettier": "^1.19.1"
}
}