forked from EvanHahn/HumanizeDuration.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.66 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
{
"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)"
],
"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"
]
}