-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
103 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
### 0.0.2 (2021-05-27) | ||
|
||
|
||
### Features | ||
|
||
* setup cli and helpers ([85b2da0](https://github.com/dico-app/dico-cli/commit/85b2da0549236acde42c29b163f9ebe032ee513e)) | ||
* setup client and dicorc libraries ([5456dd0](https://github.com/dico-app/dico-cli/commit/5456dd0998a5f5bf512f16ee828aea8796085fa8)) | ||
* setup default commands ([cc0eeb9](https://github.com/dico-app/dico-cli/commit/cc0eeb90f42c4ff7dcb1207bfbaccd046dbd2d70)) | ||
* setup user auth commands (signin/out/whoami) ([215d217](https://github.com/dico-app/dico-cli/commit/215d217bbe499efd840956d545e75775e1f3e17e)) | ||
|
||
|
||
### Chore | ||
|
||
* setup repository ([a6aa71b](https://github.com/dico-app/dico-cli/commit/a6aa71b7ba7df263a2d36e386de0c1659fd5aa08)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,87 +1,87 @@ | ||
{ | ||
"name": "@dico/cli", | ||
"version": "0.0.1", | ||
"description": "Dico.app Command Line Interface", | ||
"keywords": [ | ||
"dico", | ||
"cli", | ||
"management" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "ssh://git@github.com/dico-app/dico-cli.git" | ||
}, | ||
"license": "MIT", | ||
"author": "Lucie Haberer <hello@lihbr.com> (https://lihbr.com)", | ||
"bin": { | ||
"dico": "bin/cli.js" | ||
}, | ||
"files": [ | ||
"bin", | ||
"postinstall.js" | ||
], | ||
"scripts": { | ||
"build": "siroc build", | ||
"dev": "siroc build --watch", | ||
"release": "yarn build && yarn test && standard-version && git push --follow-tags && yarn build && npm publish", | ||
"release:dry": "yarn build && yarn test && standard-version --dry-run", | ||
"lint": "eslint --ext .js,.ts .", | ||
"unit": "nyc ava", | ||
"test": "yarn lint && yarn unit", | ||
"postinstall": "node postinstall.js" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "yarn lint", | ||
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS" | ||
} | ||
}, | ||
"dependencies": { | ||
"@lihbr/listr-update-renderer": "0.5.1", | ||
"cac": "6.7.3", | ||
"chalk": "4.1.1", | ||
"consola": "2.15.3", | ||
"debug": "4.3.1", | ||
"exit": "0.1.2", | ||
"inquirer": "8.1.0", | ||
"latest-version": "5.1.0", | ||
"listr": "0.14.3", | ||
"lodash": "4.17.21", | ||
"node-fetch": "2.6.1", | ||
"rc9": "1.2.0", | ||
"rxjs": "7.1.0", | ||
"semver": "7.3.5", | ||
"slugify": "1.5.3", | ||
"std-env": "2.3.0" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "12.1.4", | ||
"@commitlint/config-conventional": "12.1.4", | ||
"@types/exit": "0.1.31", | ||
"@types/inquirer": "7.3.1", | ||
"@types/jest": "26.0.22", | ||
"@types/listr": "0.14.2", | ||
"@types/node-fetch": "2.5.8", | ||
"@types/semver": "7.3.6", | ||
"@typescript-eslint/eslint-plugin": "4.25.0", | ||
"@typescript-eslint/parser": "4.25.0", | ||
"ava": "3.15.0", | ||
"eslint": "7.27.0", | ||
"eslint-config-prettier": "8.3.0", | ||
"eslint-plugin-prettier": "3.4.0", | ||
"husky": "4.3.8", | ||
"nyc": "15.1.0", | ||
"prettier": "2.3.0", | ||
"siroc": "0.10.1", | ||
"standard-version": "9.3.0", | ||
"ts-eager": "2.0.2", | ||
"ts-essentials": "7.0.1", | ||
"typescript": "4.3.2" | ||
}, | ||
"engines": { | ||
"node": ">=12.0.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
"name": "@dico/cli", | ||
"version": "0.0.2", | ||
"description": "Dico.app Command Line Interface", | ||
"keywords": [ | ||
"dico", | ||
"cli", | ||
"management" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "ssh://git@github.com/dico-app/dico-cli.git" | ||
}, | ||
"license": "MIT", | ||
"author": "Lucie Haberer <hello@lihbr.com> (https://lihbr.com)", | ||
"bin": { | ||
"dico": "bin/cli.js" | ||
}, | ||
"files": [ | ||
"bin", | ||
"postinstall.js" | ||
], | ||
"scripts": { | ||
"build": "siroc build", | ||
"dev": "siroc build --watch", | ||
"release": "yarn build && yarn test && standard-version && git push --follow-tags && yarn build && npm publish", | ||
"release:dry": "yarn build && yarn test && standard-version --dry-run", | ||
"lint": "eslint --ext .js,.ts .", | ||
"unit": "nyc ava", | ||
"test": "yarn lint && yarn unit", | ||
"postinstall": "node postinstall.js" | ||
}, | ||
"husky": { | ||
"hooks": { | ||
"pre-commit": "yarn lint", | ||
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS" | ||
} | ||
}, | ||
"dependencies": { | ||
"@lihbr/listr-update-renderer": "0.5.1", | ||
"cac": "6.7.3", | ||
"chalk": "4.1.1", | ||
"consola": "2.15.3", | ||
"debug": "4.3.1", | ||
"exit": "0.1.2", | ||
"inquirer": "8.1.0", | ||
"latest-version": "5.1.0", | ||
"listr": "0.14.3", | ||
"lodash": "4.17.21", | ||
"node-fetch": "2.6.1", | ||
"rc9": "1.2.0", | ||
"rxjs": "7.1.0", | ||
"semver": "7.3.5", | ||
"slugify": "1.5.3", | ||
"std-env": "2.3.0" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "12.1.4", | ||
"@commitlint/config-conventional": "12.1.4", | ||
"@types/exit": "0.1.31", | ||
"@types/inquirer": "7.3.1", | ||
"@types/jest": "26.0.22", | ||
"@types/listr": "0.14.2", | ||
"@types/node-fetch": "2.5.8", | ||
"@types/semver": "7.3.6", | ||
"@typescript-eslint/eslint-plugin": "4.25.0", | ||
"@typescript-eslint/parser": "4.25.0", | ||
"ava": "3.15.0", | ||
"eslint": "7.27.0", | ||
"eslint-config-prettier": "8.3.0", | ||
"eslint-plugin-prettier": "3.4.0", | ||
"husky": "4.3.8", | ||
"nyc": "15.1.0", | ||
"prettier": "2.3.0", | ||
"siroc": "0.10.1", | ||
"standard-version": "9.3.0", | ||
"ts-eager": "2.0.2", | ||
"ts-essentials": "7.0.1", | ||
"typescript": "4.3.2" | ||
}, | ||
"engines": { | ||
"node": ">=12.0.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
} | ||
} |