-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 828 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 828 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
34
35
36
37
{
"name": "midday",
"type": "module",
"version": "21.7.6",
"description": "Converts 24-hour (military) time string to 12-hour (meridiem) time string and vice versa.",
"homepage": "https://glize.js.org",
"repository": "github:Datamart/midday",
"license": "Apache-2.0",
"main": "./index.js",
"exports": "./index.js",
"types": "./index.d.ts",
"scripts": {
"test": "node ./index.tests.js"
},
"bugs": {
"url": "https://github.com/Datamart/midday/issues"
},
"author": {
"name": "Valentin Podkamennyi",
"email": "valentin@dtm.io",
"url": "https://vpodk.com/"
},
"keywords": [
"meridiem",
"meridiem-time",
"military-time",
"midday-time",
"ante-meridiem",
"post-meridiem",
"time",
"am-time",
"pm-time",
"ampm",
"midday",
"glize"
]
}