-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
49 lines (49 loc) · 1001 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "fake-git-history",
"version": "1.8.0",
"description": "A command-line tool to generate your GitHub activity graph.",
"bin": "src/cli.js",
"main": "src/cli.js",
"files": [
"src/cli.js",
"src/index.js"
],
"repository": "[email protected]:artiebits/fake-git-history.git",
"license": "MIT",
"private": false,
"scripts": {
"start": "node src/cli.js",
"lint": "prettier --write 'src/**/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*src/**/*.{js,md}": [
"prettier --write"
]
},
"dependencies": {
"boxen": "^4.2.0",
"chalk": "4.1.0",
"date-fns": "1.30.1",
"meow": "5.0.0",
"ora": "5.1.0"
},
"devDependencies": {
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "^1.19.1"
},
"keywords": [
"git",
"github",
"commit-history",
"git-activity",
"contributions-calendar",
"contribution-graph",
"contributions"
]
}