|
4 | 4 | "description": "Contains various implementations of the API contract described in interface-blockstore", |
5 | 5 | "author": "Alex Potsides <[email protected]>", |
6 | 6 | "license": "Apache-2.0 OR MIT", |
7 | | - "homepage": "https://github.com/ipfs/js-stores/tree/master/packages/blockstore-core#readme", |
| 7 | + "homepage": "https://github.com/ipfs/js-stores/tree/main/packages/blockstore-core#readme", |
8 | 8 | "repository": { |
9 | 9 | "type": "git", |
10 | 10 | "url": "git+https://github.com/ipfs/js-stores.git" |
11 | 11 | }, |
12 | 12 | "bugs": { |
13 | 13 | "url": "https://github.com/ipfs/js-stores/issues" |
14 | 14 | }, |
| 15 | + "publishConfig": { |
| 16 | + "access": "public", |
| 17 | + "provenance": true |
| 18 | + }, |
15 | 19 | "keywords": [ |
16 | 20 | "datastore", |
17 | 21 | "interface", |
|
75 | 79 | "sourceType": "module" |
76 | 80 | } |
77 | 81 | }, |
78 | | - "release": { |
79 | | - "branches": [ |
80 | | - "main" |
81 | | - ], |
82 | | - "plugins": [ |
83 | | - [ |
84 | | - "@semantic-release/commit-analyzer", |
85 | | - { |
86 | | - "preset": "conventionalcommits", |
87 | | - "releaseRules": [ |
88 | | - { |
89 | | - "breaking": true, |
90 | | - "release": "major" |
91 | | - }, |
92 | | - { |
93 | | - "revert": true, |
94 | | - "release": "patch" |
95 | | - }, |
96 | | - { |
97 | | - "type": "feat", |
98 | | - "release": "minor" |
99 | | - }, |
100 | | - { |
101 | | - "type": "fix", |
102 | | - "release": "patch" |
103 | | - }, |
104 | | - { |
105 | | - "type": "docs", |
106 | | - "release": "patch" |
107 | | - }, |
108 | | - { |
109 | | - "type": "test", |
110 | | - "release": "patch" |
111 | | - }, |
112 | | - { |
113 | | - "type": "deps", |
114 | | - "release": "patch" |
115 | | - }, |
116 | | - { |
117 | | - "scope": "no-release", |
118 | | - "release": false |
119 | | - } |
120 | | - ] |
121 | | - } |
122 | | - ], |
123 | | - [ |
124 | | - "@semantic-release/release-notes-generator", |
125 | | - { |
126 | | - "preset": "conventionalcommits", |
127 | | - "presetConfig": { |
128 | | - "types": [ |
129 | | - { |
130 | | - "type": "feat", |
131 | | - "section": "Features" |
132 | | - }, |
133 | | - { |
134 | | - "type": "fix", |
135 | | - "section": "Bug Fixes" |
136 | | - }, |
137 | | - { |
138 | | - "type": "chore", |
139 | | - "section": "Trivial Changes" |
140 | | - }, |
141 | | - { |
142 | | - "type": "docs", |
143 | | - "section": "Documentation" |
144 | | - }, |
145 | | - { |
146 | | - "type": "deps", |
147 | | - "section": "Dependencies" |
148 | | - }, |
149 | | - { |
150 | | - "type": "test", |
151 | | - "section": "Tests" |
152 | | - } |
153 | | - ] |
154 | | - } |
155 | | - } |
156 | | - ], |
157 | | - "@semantic-release/changelog", |
158 | | - "@semantic-release/npm", |
159 | | - "@semantic-release/github", |
160 | | - "@semantic-release/git" |
161 | | - ] |
162 | | - }, |
163 | 82 | "scripts": { |
164 | 83 | "clean": "aegir clean", |
165 | 84 | "lint": "aegir lint", |
166 | 85 | "build": "aegir build", |
167 | | - "release": "aegir release", |
168 | 86 | "test": "aegir test -t node -t browser -t webworker -t electron-main", |
169 | 87 | "test:node": "aegir test -t node --cov", |
170 | 88 | "test:chrome": "aegir test -t browser --cov", |
|
175 | 93 | "dep-check": "aegir dep-check" |
176 | 94 | }, |
177 | 95 | "dependencies": { |
178 | | - "@libp2p/logger": "^4.0.1", |
| 96 | + "@libp2p/logger": "^4.0.6", |
179 | 97 | "err-code": "^3.0.1", |
180 | 98 | "interface-blockstore": "^5.0.0", |
181 | 99 | "interface-store": "^5.0.0", |
182 | | - "it-drain": "^3.0.1", |
183 | | - "it-filter": "^3.0.0", |
184 | | - "it-merge": "^3.0.1", |
185 | | - "it-pushable": "^3.0.0", |
186 | | - "multiformats": "^13.0.0", |
187 | | - "uint8arrays": "^5.0.0" |
| 100 | + "it-drain": "^3.0.5", |
| 101 | + "it-filter": "^3.0.4", |
| 102 | + "it-merge": "^3.0.3", |
| 103 | + "it-pushable": "^3.2.3", |
| 104 | + "multiformats": "^13.0.1" |
188 | 105 | }, |
189 | 106 | "devDependencies": { |
190 | | - "aegir": "^41.1.9", |
191 | | - "interface-blockstore-tests": "^6.0.0" |
| 107 | + "aegir": "^42.2.3", |
| 108 | + "interface-blockstore-tests": "^6.0.0", |
| 109 | + "uint8arrays": "^5.0.2" |
192 | 110 | } |
193 | 111 | } |
0 commit comments