Files
smarttime/package.json

64 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2016-06-28 11:11:53 +02:00
{
2023-07-12 11:28:52 +02:00
"name": "@push.rocks/smarttime",
2018-06-10 14:00:18 +02:00
"private": false,
2024-12-14 02:22:43 +01:00
"version": "4.2.0",
2024-04-14 18:28:37 +02: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 11:11:53 +02:00
"author": "Lossless GmbH",
"license": "MIT",
2017-08-15 19:28:23 +02:00
"scripts": {
2020-09-04 14:24:42 +00:00
"test": "(tstest ./test)",
2022-11-21 09:14:32 +01:00
"build": "(tsbuild --web && tsbundle npm)",
"buildDocs": "tsdoc"
2016-06-28 11:11:53 +02:00
},
2017-08-16 14:29:15 +02:00
"devDependencies": {
"@git.zone/tsbuild": "^2.2.0",
"@git.zone/tsbundle": "^2.1.0",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.0.90",
"@push.rocks/tapbundle": "^5.5.3",
"@types/node": "^22.10.2"
2016-06-28 11:11:53 +02:00
},
"dependencies": {
"@push.rocks/lik": "^6.1.0",
2023-07-21 03:39:32 +02:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartpromise": "^4.0.4",
"croner": "^9.0.0",
"date-fns": "^4.1.0",
"dayjs": "^1.11.13",
2021-11-08 16:40:19 +01:00
"is-nan": "^1.3.2",
"pretty-ms": "^9.2.0"
2019-06-17 16:54:39 +02:00
},
"files": [
2020-05-25 21:49:35 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-17 16:54:39 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2020-07-11 21:41:33 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-11-21 09:14:32 +01:00
],
2024-04-14 18:28:37 +02:00
"type": "module",
"keywords": [
"time handling",
"cron jobs",
"timestamps",
"time intervals",
"date operations",
"time formatting",
"scheduling"
2024-05-29 14:16:49 +02:00
],
"homepage": "https://code.foss.global/push.rocks/smarttime",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smarttime.git"
}
2024-06-23 23:27:11 +02:00
}