-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.68 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "feathers-hook-breaker",
"version": "1.0.5",
"description": "An Opossum-based Circuit Breaker built to be inserted into the Feathersjs Hook Chain",
"main": "lib/breaker.js",
"types": "types",
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {
"opossum": "^6.3.0"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.5.12",
"@feathersjs/feathers": "^4.5.12",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.0",
"chai": "^4.3.6",
"feathers-memory": "^4.1.0",
"mocha": "^9.2.0",
"nyc": "^15.1.0",
"semistandard": "^16.0.1"
},
"engines": {
"node": ">= 12"
},
"scripts": {
"lint": "semistandard --fix",
"mocha": "mocha --recursive --config .mocharc.json test/",
"test": "npm run lint && npm run coverage",
"test:dev": "npm run mocha -- --watch --recursive --watch-files src/**/*.js,test/**/*.js test/**/*.test.js",
"coverage": "nyc npm run mocha"
},
"semistandard": {
"env": [
"mocha"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolarCS/feathers-hook-breaker.git"
},
"keywords": [
"feathers",
"circuit-breaker",
"feathers-plugin",
"opossum"
],
"author": {
"name": "Ben Zelinski",
"email": "[email protected]"
},
"contributors": [
{
"name": "James Villarrubia",
"email": "[email protected]"
},
{
"name": "Ben Zelinski",
"email": "[email protected]"
}
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/SolarCS/feathers-hook-breaker/blob/develop/LICENSE"
}
],
"bugs": {
"url": "https://github.com/SolarCS/feathers-hook-breaker/issues"
},
"homepage": "https://github.com/SolarCS/feathers-hook-breaker#readme",
"release": {
"branches": [
{
"name": "main"
},
{
"name": "alpha",
"channel": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/git",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "refactor",
"release": "patch"
},
{
"type": "style",
"release": "patch"
},
{
"type": "perf",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
}
]
}
]
]
}
}