forked from EvanHahn/HumanizeDuration.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.18 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
{
"name": "@sector-labs/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)"
],
"version": "3.15.1-sl.2",
"description": "Convert millisecond durations to English and many other languages.",
"homepage": "https://github.com/SectorLabs/HumanizeDuration.js",
"main": "humanize-duration.js",
"types": "humanize-duration.d.ts",
"scripts": {
"pretest": "standard --fix",
"test": "mocha"
},
"devDependencies": {
"check-ecmascript-version-compatibility": "^0.1.1",
"csv-parse": "^1.1.7",
"mocha": "^5.2.0",
"ms": "^0.7.2",
"standard": "^11.0.1"
},
"keywords": [
"humanize",
"duration",
"time",
"hours",
"minutes",
"seconds",
"days",
"years",
"months"
],
"repository": {
"type": "git",
"url": "https://github.com/SectorLabs/HumanizeDuration.js"
},
"bugs": "https://github.com/EvanHahn/HumanizeDuration.js/issues",
"license": "Unlicense",
"standard": {
"globals": [
"define",
"describe",
"it",
"before"
]
}
}