-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.66 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
{
"name": "graphql-kafkajs-subscriptions",
"version": "3.0.3",
"description": "Apollo graphql subscription over Kafka protocol",
"keywords": [
"graphql",
"kafka",
"apollo",
"subscriptions"
],
"homepage": "https://github.com/tomasAlabes/graphql-kafkajs-subscriptions#readme",
"bugs": {
"url": "https://github.com/tomasAlabes/graphql-kafkajs-subscriptions/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomasAlabes/graphql-kafkajs-subscriptions.git"
},
"license": "MIT",
"author": "Tomas Alabes",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"format": "prettier --write src",
"prepublishOnly": "yarn build",
"release": "yarn build && standard-version",
"test": "jest",
"test:watch": "jest --watchAll",
"watch": "tsc -w",
"prepare": "husky install"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"roots": [
"<rootDir>/src/test"
],
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$",
"transform": {
"\\.(ts|tsx)$": "ts-jest"
}
},
"dependencies": {
"graphql-subscriptions": "^2.0.0",
"iterall": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/jest": "^28.1.7",
"@types/node": "^14.18.24",
"husky": "^8.0.1",
"jest": "28.1.3",
"kafkajs": "^2.2.0",
"prettier": "2.7.1",
"standard-version": "^9.3.2",
"ts-jest": "28.0.8",
"tslint": "6.1.3",
"typescript": "^4.7.4"
},
"peerDependencies": {
"kafkajs": "^2.2.0"
}
}