forked from opensource-nepal/node-nepali-datetime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.79 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
{
"name": "nepali-datetime",
"version": "1.0.0",
"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.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./dateConverter": {
"require": "./dist/dateConverter.js",
"import": "./dist/dateConverter.mjs"
}
},
"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": "npm run clean && rollup -c",
"clean": "rimraf dist",
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"url": "https://github.com/opensource-nepal/node-nepali-datetime.git",
"type": "git"
},
"author": "OpenSource Nepal",
"license": "GPL-3.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"@types/jest": "^29.5.1",
"@types/node": "^18.14.1",
"jest": "^29.5.0",
"rimraf": "^4.1.2",
"rollup": "^3.17.2",
"ts-jest": "^29.1.0",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
}
}