command-line-director 1.0.0 → 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.
- package/CHANGELOG +11 -0
- package/package.json +5 -5
- package/lib/.DS_Store +0 -0
- package/test/.DS_Store +0 -0
package/CHANGELOG
CHANGED
|
@@ -4,6 +4,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [1.0.2] - 2025-30-11
|
|
8
|
+
|
|
9
|
+
### Fixes
|
|
10
|
+
- Bump versions
|
|
11
|
+
- Add github actions
|
|
12
|
+
|
|
13
|
+
## [1.0.1] - 2023-18-11
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
- Initial release
|
|
17
|
+
|
|
7
18
|
## [1.0.0] - 2021-21-09
|
|
8
19
|
|
|
9
20
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "command-line-director",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Gives direction to you nodejs command line application",
|
|
5
5
|
"main": "./lib/command-line-director.js",
|
|
6
6
|
"keywords": [
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"eslint": "^7.32.0",
|
|
35
35
|
"eslint-config-standard": "^16.0.3",
|
|
36
|
-
"eslint-plugin-import": "^2.
|
|
36
|
+
"eslint-plugin-import": "^2.29.0",
|
|
37
37
|
"eslint-plugin-node": "^11.1.0",
|
|
38
|
-
"eslint-plugin-promise": "^5.
|
|
39
|
-
"mocha": "^9.
|
|
38
|
+
"eslint-plugin-promise": "^5.2.0",
|
|
39
|
+
"mocha": "^9.2.2"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
|
-
"node": ">=
|
|
42
|
+
"node": ">=18.0.0"
|
|
43
43
|
}
|
|
44
44
|
}
|
package/lib/.DS_Store
DELETED
|
Binary file
|
package/test/.DS_Store
DELETED
|
Binary file
|