-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
34 lines (34 loc) · 897 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "git-pretty",
"version": "3.0.2",
"description": "An implementation of Justin Hileman's chart from \"Changing History, or How to Git Pretty\"",
"main": "git-pretty/git-pretty.js",
"scripts": {
"start": "node git-pretty.js",
"test": "prettier . --check",
"lint": "eslint git-pretty.js",
"format": "prettier . --write"
},
"bin": "./git-pretty.js",
"files": [
"git-pretty.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/draperunner/git-pretty.git"
},
"author": "Mats Byrkjeland <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/draperunner/git-pretty/issues"
},
"homepage": "https://github.com/draperunner/git-pretty#readme",
"dependencies": {
"chalk": "^4.1.1",
"inquirer": "^8.1.5"
},
"devDependencies": {
"eslint": "^8.48.0",
"prettier": "^3.0.2"
}
}