-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 944 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": "@writetome51/get-ymd-hms",
"version": "0.0.1",
"description": "2 functions receive Date and return date/time as object containing ymd (year month day) and hms (hour minute second). One function does machine's local time, the other does UTC time.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/writetome51/get-ymd-hms.git"
},
"keywords": [
"current",
"date",
"dates",
"times",
"object"
],
"author": "Steve Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/writetome51/get-ymd-hms/issues"
},
"homepage": "https://github.com/writetome51/get-ymd-hms#readme",
"devDependencies": {},
"dependencies": {
"@writetome51/has-value-no-value": ">=2.0.0",
"@writetome51/not": ">=1.0.5",
"@writetome51/to-str": ">=0.0.1"
}
}