@ocap/config 1.20.1 → 1.20.3

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 +1 -1
  2. package/package.json +13 -14
package/README.md CHANGED
@@ -5,7 +5,7 @@ Create or validate config object for ocap server
5
5
  ## Usage
6
6
 
7
7
  ```shell
8
- yarn add @ocap/config
8
+ pnpm install @ocap/config
9
9
  ```
10
10
 
11
11
  Then:
package/package.json CHANGED
@@ -3,18 +3,12 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.20.1",
6
+ "version": "1.20.3",
7
7
  "description": "OCAP config parsing/validation and default",
8
8
  "main": "lib/index.js",
9
9
  "files": [
10
10
  "lib"
11
11
  ],
12
- "scripts": {
13
- "lint": "eslint tests lib",
14
- "lint:fix": "eslint --fix tests lib",
15
- "test": "jest --forceExit --detectOpenHandles",
16
- "coverage": "npm run test -- --coverage"
17
- },
18
12
  "keywords": [],
19
13
  "author": "wangshijun <wangshijun2010@gmail.com> (http://github.com/wangshijun)",
20
14
  "contributors": [
@@ -25,11 +19,16 @@
25
19
  "jest": "^29.7.0"
26
20
  },
27
21
  "dependencies": {
28
- "@arcblock/did": "1.20.1",
29
- "@arcblock/did-util": "1.20.1",
30
- "@arcblock/validator": "1.20.1",
31
- "@ocap/util": "1.20.1",
32
- "lodash": "^4.17.21"
22
+ "lodash": "^4.17.21",
23
+ "@arcblock/did": "1.20.3",
24
+ "@arcblock/did-util": "1.20.3",
25
+ "@arcblock/validator": "1.20.3",
26
+ "@ocap/util": "1.20.3"
33
27
  },
34
- "gitHead": "f73bddbe4b86106fd348e43ce9e19a626acdc9f6"
35
- }
28
+ "scripts": {
29
+ "lint": "eslint tests lib",
30
+ "lint:fix": "eslint --fix tests lib",
31
+ "test": "jest --forceExit --detectOpenHandles",
32
+ "coverage": "npm run test -- --coverage"
33
+ }
34
+ }