-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
37 lines (37 loc) · 975 Bytes
/
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
{
"name": "timezone-enum",
"version": "1.0.4",
"description": "Lightweight timezone enum for JavaScript or TypeScript.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"timezones"
],
"author": "Jon Oropeza",
"license": "MIT",
"prepublish": "tsc",
"repository": {
"type": "git",
"url": "git+https://github.com/joropeza/ts-timezone-enum.git"
},
"devDependencies": {
"@jest/globals": "^29.4.1",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
}
}