-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 718 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 718 Bytes
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
{
"name": "convert-time-gmt",
"version": "1.0.0",
"description": "convert the timestamp in a format dd/mm/yyyy hh:mm:ss",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [
"time",
"convert",
"timestamp",
"gmt",
"city"
],
"author": "Carlos Gutierrez <carlos.gutierrez@tortoise.dev>",
"homepage": "https://github.com/CarGDev/time-function",
"license": "MIT",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"husky": "^4.3.8",
"jest": "^27.3.1"
},
"dependencies": {
"node-gmt": "^0.0.2"
}
}