repository-provider-cli-support 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/README.md +14 -1
  2. package/package.json +11 -8
package/README.md CHANGED
@@ -8,5 +8,18 @@
8
8
  [![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
9
9
  [![Known Vulnerabilities](https://snyk.io/test/github/arlac77/repository-provider-cli-support/badge.svg)](https://snyk.io/test/github/arlac77/repository-provider-cli-support)
10
10
  [![Coverage Status](https://coveralls.io/repos/arlac77/repository-provider-cli-support/badge.svg)](https://coveralls.io/github/arlac77/repository-provider-cli-support)
11
+
11
12
  # repository-provider-cli-support
12
- helper functions for cli apps
13
+ helper functions for repository-provider cli apps
14
+
15
+ # install
16
+
17
+ With [npm](http://npmjs.org) do:
18
+
19
+ ```shell
20
+ npm install repository-provider-cli-support
21
+ ```
22
+
23
+ # license
24
+
25
+ BSD-2-Clause
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "repository-provider-cli-support",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
7
  "exports": {
8
8
  ".": "./src/setup-provider.mjs"
9
9
  },
10
- "description": "helper functions for cli apps",
10
+ "description": "helper functions for repository-provider cli apps",
11
11
  "keywords": [
12
12
  "repository-provider"
13
13
  ],
@@ -27,23 +27,26 @@
27
27
  "lint:docs": "documentation lint ./src/**/*.mjs"
28
28
  },
29
29
  "dependencies": {
30
- "aggregation-repository-provider": "^5.3.28",
30
+ "aggregation-repository-provider": "^5.3.30",
31
31
  "etag-cache-leveldb": "^2.0.3",
32
32
  "leveldown": "^6.1.1",
33
33
  "levelup": "^5.1.1"
34
34
  },
35
35
  "devDependencies": {
36
- "ava": "^5.3.0",
37
- "c8": "^7.14.0",
38
- "commander": "^10.0.1",
36
+ "ava": "^5.3.1",
37
+ "c8": "^8.0.0",
38
+ "commander": "^11.0.0",
39
39
  "documentation": "^14.0.2",
40
- "github-repository-provider": "^8.0.19",
41
- "semantic-release": "^21.0.3"
40
+ "github-repository-provider": "^8.0.20",
41
+ "semantic-release": "^21.0.5"
42
42
  },
43
43
  "repository": {
44
44
  "type": "git",
45
45
  "url": "https://github.com/arlac77/repository-provider-cli-support"
46
46
  },
47
+ "engines": {
48
+ "node": ">=16.20.1"
49
+ },
47
50
  "bugs": {
48
51
  "url": "https://github.com/arlac77/repository-provider-cli-support/issues"
49
52
  },