-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.6 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
{
"name": "datenp",
"version": "0.1.2",
"description": "Lightweight JavaScript library for nepali date conversion",
"main": "dist/mod.js",
"module": "dist/mod.mjs",
"types": "dist/mod.d.ts",
"exports": {
"import": "./dist/mod.mjs",
"require": "./dist/mod.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"postbuild": "node scripts/deno.js",
"format": "prettier --write src/**/*.{ts,js}",
"lint": "eslint src --ext .ts --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevAndromeda/datenp.git"
},
"keywords": [
"nepali",
"date",
"utils",
"nepal",
"bs",
"ad",
"api",
"english",
"bs-to-ad",
"ad-to-bs",
"bikram",
"sambat"
],
"author": "DevAndromeda <contact@dhunganakunjan.com.np>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DevAndromeda/datenp/issues"
},
"homepage": "https://github.com/DevAndromeda/datenp#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"fs-extra": "^10.0.0",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"readdirp": "^3.6.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"tslib": "^2.3.1",
"tsup": "^5.11.10",
"typescript": "^4.5.4"
}
}