-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "timezone-utility",
"version": "1.6.4",
"description": "A versatile timezone management package designed for CommonJS, ES Module (ESM), JavaScript, and TypeScript projects.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"scripts": {
"build": "rollup -c",
"dev": "concurrently \"tsc --watch\" \"nodemon ./dist/index.js\"",
"test": "jest"
},
"keywords": [
"timezone",
"time",
"zones",
"timezone-list",
"timezones-conversion",
"datetime-conversion",
"timezone-management"
],
"author": "devmamunur",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/devmamunur/timezone-utility.git"
},
"homepage": "https://github.com/devmamunur/timezone-utility#readme",
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"rollup": "^4.24.0",
"ts-jest": "^29.2.5",
"tslib": "^2.8.0",
"typescript": "^5.0.0"
},
"dependencies": {
"luxon": "^3.5.0"
}
}