-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
35 lines (35 loc) · 843 Bytes
/
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
{
"name": "format-duration",
"description": "Convert a number in milliseconds to a standard duration string.",
"version": "3.0.2",
"author": "Nate Goldman <ungoldman@gmail.com> (https://ungoldman.com/)",
"bugs": {
"url": "https://github.com/ungoldman/format-duration/issues"
},
"devDependencies": {
"standard": "^17.0.0",
"tape": "^5.5.2"
},
"homepage": "https://github.com/ungoldman/format-duration",
"keywords": [
"display",
"duration",
"format",
"hh:mm:ss",
"hours",
"milliseconds",
"mm:ss",
"seconds",
"time"
],
"license": "ISC",
"main": "format-duration.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ungoldman/format-duration.git"
},
"scripts": {
"test": "standard && tape *.test.js"
},
"types": "format-duration.d.ts"
}