-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 979 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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "spawnpoint-nats",
"version": "2.2.0",
"description": "NATS Plugin for Spawnpoint on NPM",
"main": "spawnpoint.nats.js",
"scripts": {
"test": "npm run lint",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"precommit": "lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodecraft/spawnpoint-nats.git"
},
"keywords": [
"nats",
"spawnpoint",
"message bus",
"message queue",
"pub",
"sub"
],
"author": "Nodecraft Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/nodecraft/spawnpoint-nats/issues"
},
"homepage": "https://github.com/nodecraft/spawnpoint-nats#readme",
"dependencies": {
"eventemitter2": "*",
"lodash": "*",
"spawnpoint": "*"
},
"peerDependencies": {
"nats": "^2.21.0"
},
"devDependencies": {
"@nodecraft/eslint-config": "^34.0.1",
"eslint": "^8.57.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0"
},
"engines": {
"node": ">=16.12.0"
}
}