-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.22 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
{
"name": "@c3exchange/natsjetstreamclient",
"version": "0.2.1",
"description": "A NATS.io/JetStream client library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf -I lib",
"build": "npm run clean && tsc && npm run gen:decl",
"gen:decl": "dts-bundle-generator -o lib/index.d.ts -no-banner src/index.ts",
"prepack": "npm run build",
"test": "npm run clean && tsc --build tsconfig.tests.json && node lib/tests/run-tests.js",
"lint": "eslint"
},
"homepage": "https://github.com/c3exchange/natsjetstreamclient",
"repository": {
"type": "git",
"url": "[email protected]:c3exchange/natsjetstreamclient.git"
},
"bugs": {
"url": "https://github.com/c3exchange/natsjetstreamclient/issues"
},
"author": "C3.io",
"license": "MIT",
"engines": {
"node": ">= 18.0.0"
},
"dependencies": {
"nats": "^2.28.0"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/node": "^20.14.9",
"ansi-colors": "^4.1.3",
"dotenv": "^16.4.5",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.6.0",
"glob": "^10.4.2",
"rimraf": "^5.0.7",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0-alpha.30"
},
"files": [
"package.json",
"*.md",
"LICENSE",
"lib/**/*",
"src/**/*"
]
}