-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "pretty-seconds",
"version": "3.0.1",
"description": "a very simple function to stringify any huge number of seconds. give it million seconds and it tells you how many days, hours, minutes and seconds in a pretty string.",
"main": "dist/pretty-seconds.js",
"author": "Michael Heuberger <[email protected]>",
"keywords": [
"time",
"seconds",
"string"
],
"source": "index.js",
"module": "dist/pretty-seconds.mjs",
"unpkg": "dist/pretty-seconds.umd.js",
"scripts": {
"test": "nodeunit tests/basics.js",
"lint": "standard index.js",
"lint:fix": "standard --fix index.js",
"build": "microbundle"
},
"engines": {
"node": ">=18.12.1",
"npm": ">=8.19.2"
},
"repository": {
"type": "git",
"url": "https://github.com/binarykitchen/pretty-seconds.git"
},
"license": "MIT",
"readmeFilename": "README.md",
"directories": {
"test": "tests"
},
"devDependencies": {
"microbundle": "0.15.1",
"nodeunit": "0.11.3",
"standard": "17.0.0"
}
}