standardnotes-server/packages/time/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2022-07-06 09:46:04 +00:00
{
"name": "@standardnotes/time",
"version": "1.18.0",
2022-07-06 09:46:04 +00:00
"engines": {
"node": ">=18.0.0 <21.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",
"provenance": true
2022-07-06 09:46:04 +00:00
},
"repository": {
"type" : "git",
"url" : "git@github.com:standardnotes/server.git",
"directory": "packages/time"
},
2022-07-06 09:46:04 +00:00
"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 --coverage --no-cache"
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",
"@typescript-eslint/eslint-plugin": "^6.5.0",
"@typescript-eslint/parser": "^6.5.0",
2023-05-05 09:17:26 +00:00
"eslint": "^8.39.0",
"eslint-plugin-prettier": "^5.0.0",
2023-05-05 08:49:47 +00:00
"jest": "^29.5.0",
"prettier": "^3.0.3",
2023-05-05 08:49:47 +00:00
"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
}
}