forked from opensource-nepal/node-nepali-datetime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "nepali-datetime",
"version": "1.2.1",
"description": "A Node project designed to support native JavaScript-like features for Nepali dates. It includes features such as 'NepaliDate' for Nepali date support and 'dateConverter' for date conversions.",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./dateConverter": {
"types": "./dist/dateConverter/index.d.ts",
"import": "./dist/dateConverter/index.mjs",
"require": "./dist/dateConverter/index.cjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"javascript",
"typescript",
"node",
"nepal",
"nepali",
"nepali-date",
"nepali-date-converter",
"nepali-time",
"nepali-timezone",
"date-converter",
"calendar",
"ad-bs",
"ad-to-bs",
"bs-ad",
"bs-to-ad",
"AD to BS",
"BS to AD"
],
"scripts": {
"build": "unbuild",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "husky install && npm run build",
"lint": "prettier --check .",
"format": "prettier --write ."
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"repository": {
"url": "https://github.com/opensource-nepal/node-nepali-datetime.git",
"type": "git"
},
"author": "OpenSource Nepal",
"license": "GPL-3.0",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/jest": "^29.5.4",
"@types/node": "^20.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.2.3",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"unbuild": "^2.0.0"
}
}