-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 954 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
{
"name": "gitdate",
"version": "1.0.3",
"description": "git commit date trick",
"preferGlobal": true,
"main": "index.js",
"bin": {
"gitdate": "./bin/gitdate.js"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "standard && nyc --reporter=lcov --reporter=text-lcov ava",
"testing": "standard && ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WindomZ/gitdate.js.git"
},
"keywords": [
"git",
"commit",
"date"
],
"author": "WindomZ",
"license": "MIT",
"bugs": {
"url": "https://github.com/WindomZ/gitdate.js/issues"
},
"homepage": "https://github.com/WindomZ/gitdate.js#readme",
"devDependencies": {
"ava": "^3.0.0",
"coveralls": "^3.0.2",
"nyc": "^15.0.0",
"standard": "^14.0.0"
},
"dependencies": {
"co": "^4.6.0",
"colors": "^1.3.3",
"commander": "^4.0.0",
"moment": "^2.23.0",
"shelljs": "^0.8.3"
}
}