-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.15 KB
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
42
43
44
45
{
"name": "timezone-utility",
"version": "2.6.1",
"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",
"types": "./dist/index.d.ts",
"files": [
"dist",
"dist/data"
],
"scripts": {
"build": "rollup -c",
"dev": "concurrently \"tsc --watch\" \"nodemon ./dist/index.js\"",
"test": "jest"
},
"keywords": [
"timezone-utility",
"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": {}
}