UNPKG

961 BJSONView Raw
1{
2 "name": "git-commands-cli",
3 "version": "1.3.4",
4 "description": "A Companion CLI App For Gitcheats",
5 "main": "cli.js",
6 "scripts": {
7 "test": "eslint ./",
8 "precommit": "lint-staged",
9 "start": "node cli.js"
10 },
11 "lint-staged": {
12 "*.{js,json,css,md}": [
13 "prettier --write",
14 "git add"
15 ]
16 },
17 "author": "Can Cellek",
18 "license": "MIT",
19 "dependencies": {
20 "boxen": "^4.1.0",
21 "chalk": "^2.4.2",
22 "configstore": "^5.0.0",
23 "opn": "^6.0.0",
24 "ora": "^4.0.2",
25 "request": "^2.88.0",
26 "update-check": "^1.5.3"
27 },
28 "repository": {
29 "type": "git",
30 "url": "https://github.com/excalith/git-cheats-cli.git"
31 },
32 "bin": {
33 "gitcheats": "./cli.js"
34 },
35 "devDependencies": {
36 "babel-eslint": "^10.0.3",
37 "eslint": "^6.5.1",
38 "eslint-config-prettier": "^6.3.0",
39 "eslint-plugin-prettier": "3.1.1",
40 "husky": "^3.0.8",
41 "lint-staged": "^9.4.1",
42 "prettier": "1.18.2"
43 }
44}