-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
93 lines (93 loc) · 2.37 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "feathers-sync",
"description": "Feathers",
"version": "3.0.3",
"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": ">= 12"
},
"main": "lib/",
"types": "types/",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"lib/**",
"types/**",
"*.d.ts",
"*.js"
],
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator --user feathersjs-ecosystem --project feathers-sync && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"update-dependencies": "ncu -u",
"lint": "semistandard --fix",
"dtslint": "dtslint types",
"mocha": "mocha --recursive test/",
"test": "npm run lint && npm run dtslint && npm run coverage",
"coverage": "nyc npm run mocha"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"src": "src"
},
"dependencies": {
"amqp-connection-manager": "^4.1.10",
"amqplib": "^0.10.3",
"debug": "^4.3.4",
"lodash": "^4.17.21",
"nats": "^2.12.1",
"redis": "^4.6.4"
},
"devDependencies": {
"@feathersjs/feathers": "^5.0.0-pre.38",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/node": "^18.14.0",
"bson": "^5.0.1",
"dtslint": "^4.2.1",
"mocha": "^10.2.0",
"npm-check-updates": "^16.7.6",
"nyc": "^15.1.0",
"semantic-release": "^20.1.0",
"semistandard": "^16.0.1",
"typescript": "^4.9.5"
},
"mocha": {
"timeout": 30000,
"exit": true
},
"release": {
"branches": [
"release"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
}
}