-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 920 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
{
"name": "@d4nyll/git-tt",
"version": "0.1.3",
"description": "Super Easy™ time-travelling in Git",
"keywords": [
"git",
"git extension",
"date",
"time",
"past",
"present",
"future",
"time travel",
"time machine",
"GIT_AUTHOR_DATE",
"GIT_COMMITTER_DATE"
],
"homepage": "https://github.com/d4nyll/git-tt",
"repository": "github:d4nyll/git-tt",
"bugs": {
"url": "https://github.com/d4nyll/git-tt/issues",
"email": "dan@danyll.com"
},
"main": "index.js",
"author": "Daniel Li <dan@danyll.com>",
"license": "MIT",
"bin": {
"git-tt": "./cli.js"
},
"devDependencies": {
"husky": "^2.4.0",
"synp": "^1.3.1"
},
"husky": {
"hooks": {
"pre-commit": "rm package-lock.json; synp --source-file yarn.lock; git add package-lock.json"
}
},
"dependencies": {
"chrono-node": "^1.3.5",
"moment": "^2.22.2"
}
}