r2-explorer 0.2.4 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +56 -17
- package/bin/r2-explorer.js +26 -21
- package/dist/umd/index.js +75 -43
- package/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "r2-explorer",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "A Google Drive Interface for your Cloudflare R2 Buckets",
|
|
5
5
|
"main": "dist/umd/index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"
|
|
7
|
+
"postinstallDisabled": "husky install",
|
|
8
8
|
"prepublishOnly": "pinst --disable",
|
|
9
9
|
"postpublish": "pinst --enable",
|
|
10
10
|
"build": "npm run build:umd",
|
|
11
|
-
"build:umd": "node tools/cleanup umd && rollup --config rollup.config.js",
|
|
11
|
+
"build:umd": "node tools/cleanup umd && rollup --config config/rollup.config.js",
|
|
12
12
|
"clean": "node tools/cleanup",
|
|
13
13
|
"package": "npm run build && npm pack",
|
|
14
14
|
"test": "jest --no-cache --runInBand",
|
|
15
15
|
"test:cov": "jest --coverage --no-cache --runInBand",
|
|
16
16
|
"addscope": "node tools/packagejson name @g4brym/workers-qb",
|
|
17
17
|
"prettify": "prettier . --write --ignore-unknown",
|
|
18
|
-
"
|
|
18
|
+
"prepareDisabled": "husky install"
|
|
19
19
|
},
|
|
20
20
|
"publishConfig": {
|
|
21
21
|
"access": "public"
|