-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
60 lines (60 loc) · 1.88 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": "rabbitmq-stream-js-client",
"version": "0.6.0",
"description": "Rabbit stream client for JS/TS application",
"main": "dist/index.js",
"scripts": {
"test": "mocha test",
"build": "tsc",
"check": "npm run check-ts && npm run check-lint && npm run check-format && npm run check-spell",
"check-ts": "tsc --noEmit && tsc --project test/tsconfig.json --noEmit",
"check-lint": "tsc --noEmit && eslint 'src/**/*.ts' 'test/**/*.ts'",
"check-format": "prettier -c 'src/**/*.ts' 'test/**/*.ts'",
"check-spell": "cspell 'src/**/*ts' 'test/**/*ts'",
"format": "prettier -w './**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coders51/rabbitmq-stream-js-client.git"
},
"keywords": [
"RabbitMQ",
"Stream"
],
"author": "coders51 <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/coders51/rabbitmq-stream-js-client/issues"
},
"homepage": "https://github.com/coders51/rabbitmq-stream-js-client#readme",
"devDependencies": {
"@tsconfig/node-lts": "^20.1.1",
"@types/amqplib": "^0.10.1",
"@types/chai": "^4.3.4",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-spies": "^1.0.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"amqplib": "^0.10.5",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.1.0",
"cspell": "^7.3.9",
"eslint": "^8.33.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"got": "^11.8.5",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"winston": "^3.8.2"
},
"dependencies": {
"semver": "^7.5.4"
}
}