@datapos/datapos-development 0.3.25 → 0.3.29
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 +1 -2
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@datapos/datapos-development)
|
|
4
4
|
[](./LICENSE)
|
|
5
|
-
[](#)
|
|
6
5
|
|
|
7
6
|
A library of JavaScript operations for managing the Data Positioning repositories.
|
|
8
7
|
|
|
@@ -48,7 +47,7 @@ For detailed implementation, see the `scripts` section in the `package.json` fil
|
|
|
48
47
|
| ------------------ | ---------------- | ---------------------------------------------------------------------------------------------------------- |
|
|
49
48
|
| audit | alt+ctrl+shift+a | Audit the project's dependencies for known security vulnerabilities. |
|
|
50
49
|
| build | alt+ctrl+shift+b | NOT implemented. |
|
|
51
|
-
| check | alt+ctrl+shift+c | List outdated dependencies.
|
|
50
|
+
| check | alt+ctrl+shift+c | List outdated dependencies and run retire scanner. |
|
|
52
51
|
| document | alt+ctrl+shift+d | Identify licenses of the project's production and peer dependencies. See [LICENSES.json](./LICENSES.json). |
|
|
53
52
|
| format | alt+ctrl+shift+f | Enforce formatting style rules. |
|
|
54
53
|
| lint | alt+ctrl+shift+l | Check the code for errors and enforce coding style rules. |
|
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.
|
|
7
|
+
"version": "0.3.29",
|
|
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",
|