add yargs

lord7-schema
Yanick Champoux 2023-05-05 10:56:30 -04:00
parent 2f08a93d5f
commit 42bf947128
2 changed files with 19 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
node_modules/
pnpm-lock.yaml

17
package.json Normal file
View File

@ -0,0 +1,17 @@
{
"name": "changelord",
"version": "0.0.1",
"description": "cli-based changelog manager",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"changelog"
],
"author": "Yanick Champoux <yanick@babyl.ca> (http://techblog.babyl.ca/)",
"license": "ISC",
"dependencies": {
"yargs": "^17.7.2"
}
}