forked from EvanHahn/HumanizeDuration.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.6 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
{
"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)"
],
"version": "3.24.0",
"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",
"lint": "prettier --check \"**/*.{js,json,md}\" && eslint \"**/*.js\"",
"format": "prettier --write \"**/*.{js,json,md}\"",
"test": "mocha"
},
"devDependencies": {
"csv-parse": "^4.12.0",
"eslint": "^7.10.0",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^8.1.3",
"ms": "^2.1.2",
"prettier": "^2.1.2"
},
"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"
]
}