-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "@mickl/socket.io-nats-emitter",
"version": "2.1.1",
"description": "NATS emitter for Socket.io",
"license": "MIT",
"files": [
"dist/"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "npm run format:check && tsc && nyc ts-mocha test/index.ts --exit",
"format:check": "prettier --check 'lib/**/*.ts' 'test/**/*.ts'",
"format:fix": "prettier --write 'lib/**/*.ts' 'test/**/*.ts'",
"prepack": "tsc",
"docker-start": "docker-compose up -d",
"docker-stop": "docker-compose stop"
},
"dependencies": {
"debug": "~4.3.1"
},
"devDependencies": {
"@mickl/socket.io-nats-adapter": "^2.0.1",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.33",
"expect.js": "^0.3.1",
"mocha": "^8.3.2",
"nats": "^2.0.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"socket.io": "^4.0.0",
"socket.io-adapter": "^2.2.0",
"socket.io-client": "^4.0.0",
"socket.io-parser": "^4.0.4",
"ts-mocha": "^8.0.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"nats": "^2.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MickL/socket.io-nats-emitter.git"
}
}