Files
archived-pretty-seconds-spa…/package.json
2022-01-04 15:43:56 +13:00

40 lines
1.0 KiB
JSON

{
"name": "pretty-seconds",
"version": "2.0.0",
"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 <michael.heuberger@binarykitchen.com>",
"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"
},
"devDependencies": {
"microbundle": "0.14.2",
"nodeunit": "0.11.3",
"standard": "16.0.4"
},
"engines": {
"node": "^16.13.1",
"npm": "^8.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/binarykitchen/pretty-seconds.git"
},
"license": "MIT",
"readmeFilename": "README.md",
"directories": {
"test": "tests"
}
}