This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@egomobile/nats",
"version": "0.5.0",
"description": "Classes, functions and tools that help to connect and communicate to and with a NATS streaming server.",
"main": "lib/index.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "del ./lib && tsc",
"docs:generate": "del ./docs && typedoc --out ./docs ./src",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts src",
"sandbox": "nodemon --watch './sandbox.ts' --exec node -r ts-node/register --inspect=0.0.0.0:9229 ./sandbox.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egomobile/node-nats.git"
},
"keywords": [
"node",
"nats",
"streaming",
"client",
"listener",
"publisher",
"classes",
"tools",
"functions",
"typescript",
"js",
"ts",
"javascript",
"typescript",
"ego"
],
"author": "Next.e.GO Mobile SE, Aachen, Germany",
"license": "LGPL-3.0",
"files": [
"CHANGELOG.md",
"LICENSE",
"lib",
"!lib/**/*.map",
"README.md"
],
"devDependencies": {
"@egomobile/tsconfig": "^5.0.0",
"@types/node": "^18.19.5",
"del-cli": "5.1.0",
"eslint": "8.56.0",
"eslint-config-ego": "^0.19.0",
"nodemon": "3.0.2",
"ts-node": "10.9.2",
"typedoc": "^0.25.7",
"typescript": "4.7.4"
},
"dependencies": {
"nats": "2.18.0"
}
}