-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.82 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@micheleangioni/node-messagebrokers",
"version": "0.11.1",
"description": "High level library which abstracts low level Message Brokers clients ",
"keywords": [
"TypeScript",
"Message Brokers",
"Kafka"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "npm run lint && rm -rf ./build && tsc --strictNullChecks",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\"",
"test": "jest --runInBand --forceExit --verbose",
"test-ci": "NODE_ENV=ci && npm run test",
"prepublishOnly": "npm test && npm run lint",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run lint",
"postversion": "git push && git push --tags"
},
"author": "Michele Angioni <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/micheleangioni/node-messagebrokers"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"verbose": true
},
"dependencies": {
"aws-sdk": "^2.1167.0",
"cloudevents": "^4.0.1",
"kafkajs": "^2.1.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^14.18.21",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.30.3",
"@typescript-eslint/parser": "^5.30.3",
"eslint": "^8.19.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-sort-class-members": "^1.14.1",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"ts-node": "^10.8.2",
"typescript": "~4.7.4"
}
}