forked from EvanHahn/HumanizeDuration.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.85 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "humanize-duration",
"author": "Evan Hahn <[email protected]> (https://evanhahn.com)",
"contributors": [
"Óli Tómas Freysson (https://github.com/olitomas)",
"Martin Prins (https://github.com/magarcia)",
"Filipi Siqueira (https://github.com/filipi777)",
"Peter Rekdal Sunde (https://github.com/peters)",
"Michał Janiec (https://github.com/mjjaniec)",
"Eileen Li (https://github.com/eileen3)",
"Tommy Brunn (https://github.com/Nevon)",
"Giovanni Pellerano (https://github.com/evilaliv3)",
"Rahma Sghaier (https://twitter.com/sghaierrahma)",
"Evgenios Kastanias (https://github.com/evgenios)",
"Oleksii Mylotskyi (https://github.com/spalax)",
"Matthew Brandly (https://github.com/brandly)",
"Patrik Simek (https://github.com/patriksimek)",
"Toni Helminen (https://github.com/tonihelminen)",
"Vidmantas Drasutis (https://github.com/drasius2)",
"Manh Tuan (https://github.com/J2TeaM)",
"Leonard Lee (https://github.com/sheeeng)",
"Jesse Jackson (https://github.com/jsejcksn)",
"Caner Elci (https://github.com/canerelci)",
"Matej Kolesár (https://github.com/rasel-sk)",
"Abdul Jalil (https://github.com/abduljalilm94)",
"Alex Sam (https://github.com/sam-lex)",
"Wasuwat Limsuparhat (https://github.com/rappad)",
"Harijs Deksnis (https://github.com/arcanous)",
"Neer Thapa(Subit) (https://github.com/nirmalathapa)",
"Fahad Kassim (https://github.com/fadsel)",
"Prayag Roy Choudhury (https://github.com/BeardyGod)",
"Aryan Rawlani (https://github.com/aryanrawlani28)",
"Kristijan Jesenski (https://github.com/kjesenski)",
"Michal Karzel (https://github.com/Misioka)",
"Batmend Ganbaatar (https://github.com/theironbatka)",
"Mikias Menjeta (https://github.com/OMikiasO)"
],
"version": "3.32.1",
"description": "Convert millisecond durations to English and many other languages.",
"homepage": "https://github.com/EvanHahn/HumanizeDuration.js",
"main": "humanize-duration.js",
"scripts": {
"pretest": "npm run lint && npm run typecheck",
"lint": "prettier --check . && eslint .",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"test": "node --test"
},
"devDependencies": {
"@types/ms": "^0.7.34",
"@types/node": "^20.11.30",
"csv-parse": "^5.5.5",
"eslint": "^8.57.0",
"ms": "^2.1.3",
"prettier": "^3.3.3",
"typescript": "^5.4.3"
},
"keywords": [
"humanize",
"duration",
"time",
"hours",
"minutes",
"seconds",
"days",
"years",
"months"
],
"repository": {
"type": "git",
"url": "git://github.com/EvanHahn/HumanizeDuration.js.git"
},
"bugs": "https://github.com/EvanHahn/HumanizeDuration.js/issues",
"license": "Unlicense",
"files": [
"README.md",
"LICENSE.txt",
"CONTRIBUTING.md",
"HISTORY.md",
"humanize-duration.js"
]
}