standardnotes-server/packages/time/package.json

40 lines
935 B
JSON
Raw Normal View History

2022-07-06 09:46:04 +00:00
{
"name": "@standardnotes/time",
"version": "1.14.2",
2022-07-06 09:46:04 +00:00
"engines": {
"node": ">=18.0.0 <19.0.0"
2022-07-06 09:46:04 +00:00
},
"description": "Utilities for time processing and calculation",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/**/*.js",
"dist/src/**/*.d.ts"
],
"publishConfig": {
"access": "public"
},
"author": "Standard Notes",
"license": "AGPL-3.0-or-later",
"scripts": {
"clean": "rm -fr dist",
"build": "tsc --build",
2022-07-06 09:46:04 +00:00
"lint": "eslint . --ext .ts",
"test": "jest spec --coverage"
2022-07-06 09:46:04 +00:00
},
"dependencies": {
"dayjs": "^1.11.6",
2022-07-06 09:46:04 +00:00
"microtime": "^3.1.0",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
2023-05-05 08:49:47 +00:00
"@types/jest": "^29.5.1",
2022-07-06 09:46:04 +00:00
"@types/microtime": "^2.1.0",
2023-01-20 09:16:04 +00:00
"@typescript-eslint/eslint-plugin": "^5.48.2",
2022-07-06 09:46:04 +00:00
"eslint-plugin-prettier": "^4.2.1",
2023-05-05 08:49:47 +00:00
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
2023-05-05 08:53:25 +00:00
"typescript": "^5.0.4"
2022-07-06 09:46:04 +00:00
}
}