-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.09 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.09 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "feathers-sync",
"description": "Feathers",
"version": "3.1.1",
"repository": {
"type": "git",
"url": "https://github.com/feathersjs-ecosystem/feathers-sync.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/feathersjs/feathers-mubsub/issues"
},
"homepage": "https://github.com/feathersjs/feathers-mubsub",
"keywords": [
"feathers",
"feathers-plugin",
"cluster"
],
"author": "Feathers contributors (https://feathersjs.com)",
"contributors": [],
"engines": {
"node": ">= 20"
},
"main": "lib/",
"types": "types/index.d.ts",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"types/",
"*.d.ts",
"*.js"
],
"scripts": {
"release": "semantic-release",
"update-dependencies": "ncu -u",
"lint": "standard --fix && tsd",
"mocha": "mocha --recursive test/",
"test": "npm run lint && npm run coverage",
"coverage": "nyc npm run mocha"
},
"standard": {
"env": [
"mocha"
]
},
"directories": {
"src": "src"
},
"dependencies": {
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.9",
"debug": "^4.4.1",
"lodash": "^4.17.21",
"nats": "^2.29.3",
"redis": "^5.8.2"
},
"devDependencies": {
"@feathersjs/feathers": "^5.0.34",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^24.3.1",
"bson": "^6.10.4",
"mocha": "^11.7.2",
"npm-check-updates": "^18.0.3",
"nyc": "^17.1.0",
"semantic-release": "^24.2.7",
"standard": "^17.1.2",
"tsd": "^0.33.0",
"typescript": "^5.9.2"
},
"mocha": {
"timeout": 30000,
"exit": true
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}