@datapos/datapos-development 0.3.23 → 0.3.26

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 +3 -3
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -39,10 +39,10 @@ The 'index.js' file exposes the following operations:
39
39
  | uploadModuleConfig | Upload a modules configuration to the Cloudflare `state` durable object. |
40
40
  | uploadModuleToR2 | Upload a module to Cloudflare R2 storage. |
41
41
 
42
- ## Repository Management Commands
42
+ ## Repository Common Management Commands
43
43
 
44
44
  The table below lists the repository management commands available in this project.
45
- For detailed implementation, see the `scripts` section in `package.json`.
45
+ For detailed implementation, see the `scripts` section in the `package.json` file.
46
46
 
47
47
  | Name | Key Code | Notes |
48
48
  | ------------------ | ---------------- | ---------------------------------------------------------------------------------------------------------- |
@@ -59,7 +59,7 @@ For detailed implementation, see the `scripts` section in `package.json`.
59
59
 
60
60
  ## Compliance
61
61
 
62
- This badge reflects FOSSA's assessment of this repository's open-source license compliance.
62
+ The following badge reflects FOSSA's assessment of this repository's open-source license compliance.
63
63
 
64
64
  [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fdata-positioning%2Fdatapos-development.svg?type=large&issueType=license)](https://app.fossa.com/projects/git%2Bgithub.com%2Fdata-positioning%2Fdatapos-development?ref=badge_large&issueType=license)
65
65
 
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "main": "index.js",
7
- "version": "0.3.23",
7
+ "version": "0.3.26",
8
8
  "devDependencies": {
9
9
  "eslint": "^9.36.0",
10
10
  "license-report": "^6.8.0",
@@ -12,13 +12,14 @@
12
12
  "nanoid": "^5.1.5",
13
13
  "npm-check-updates": "^18.3.0",
14
14
  "prettier": "^3.6.2",
15
+ "retire": "^5.3.0",
15
16
  "run": "^1.5.0"
16
17
  },
17
18
  "scripts": {
18
19
  "audit": "npm audit",
19
20
  "build": "echo \"***** BUILD SCRIPT NOT IMPLEMENTED. *****\"",
20
21
  "bumpVersion": "node -e \"import('./index.js').then(m => m.bumpVersion())\"",
21
- "check": "npm outdated; npm-check-updates -i",
22
+ "check": "npm outdated; npm-check-updates -i && retire",
22
23
  "document": "license-report --only=prod,peer > LICENSES.json && license-report-check --source ./LICENSES.json --allowed 'MIT' --allowed 'n/a' --allowed 'Apache-2.0' --output=table",
23
24
  "format": "prettier --write *.js",
24
25
  "lint": "eslint *.js",