smarttime/package.json

63 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2016-06-28 09:11:53 +00:00
{
2023-07-12 09:28:52 +00:00
"name": "@push.rocks/smarttime",
2018-06-10 12:00:18 +00:00
"private": false,
2024-06-23 21:30:15 +00:00
"version": "4.0.8",
2024-04-14 16:28:37 +00:00
"description": "Provides utilities for advanced time handling including cron jobs, timestamps, intervals, and more.",
2020-05-25 21:49:08 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2016-06-28 09:11:53 +00:00
"author": "Lossless GmbH",
"license": "MIT",
2017-08-15 17:28:23 +00:00
"scripts": {
2020-09-04 14:24:42 +00:00
"test": "(tstest ./test)",
2022-11-21 08:14:32 +00:00
"build": "(tsbuild --web && tsbundle npm)",
"buildDocs": "tsdoc"
2016-06-28 09:11:53 +00:00
},
2017-08-16 12:29:15 +00:00
"devDependencies": {
"@git.zone/tsbuild": "^2.1.80",
2024-04-14 16:28:37 +00:00
"@git.zone/tsbundle": "^2.0.15",
2023-10-20 10:50:47 +00:00
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.14.8"
2016-06-28 09:11:53 +00:00
},
"dependencies": {
"@push.rocks/lik": "^6.0.15",
2023-07-21 01:39:32 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2023-07-12 09:28:52 +00:00
"@push.rocks/smartpromise": "^4.0.3",
2023-10-20 10:50:47 +00:00
"croner": "^7.0.3",
"dayjs": "^1.11.11",
2021-11-08 15:40:19 +00:00
"is-nan": "^1.3.2",
2022-11-21 08:14:32 +00:00
"pretty-ms": "^8.0.0"
2019-06-17 14:54:39 +00:00
},
"files": [
2020-05-25 21:49:35 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-17 14:54:39 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-07-11 21:41:33 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-11-21 08:14:32 +00:00
],
2024-04-14 16:28:37 +00:00
"type": "module",
"keywords": [
"time handling",
"cron jobs",
"timestamps",
"time intervals",
"date operations",
"time formatting",
"scheduling"
2024-05-29 12:16:49 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smarttime",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smarttime.git"
}
2024-06-23 21:27:11 +00:00
}