-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2.19 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
74
75
{
"name": "bangla-calendar",
"version": "0.0.0-development",
"description": "A small library to convert any valid javascript date to Bangla date.",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/index.d.ts",
"type": "module",
"scripts": {
"build": "rimraf lib && tsc && rollup -c rollup.config.js",
"prettier": "prettier --ignore-path .gitignore \"**/*.+(js|ts|json)\"",
"check:format": "npm run prettier -- --list-different",
"format": "npm run prettier -- --write",
"check:lint": "eslint --fix .",
"lint": "eslint --fix .",
"check:types": "tsc",
"test": "jest",
"validate": "npm-run-all --parallel check:* test build",
"lint-staged": "lint-staged",
"prepare": "husky install",
"commit": "cz",
"release": "semantic-release --branches main"
},
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "https://github.com/sh4hids/bangla-calendar.git"
},
"keywords": [
"Bengali",
"date",
"bengali calendar",
"calendar"
],
"author": "Shahidul Islam Majumder <hello@shahid.pro>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sh4hids/bangla-calendar/issues"
},
"homepage": "https://github.com/sh4hids/bangla-calendar#readme",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^27.5.2",
"cz-conventional-changelog": "^3.3.0",
"del": "^8.0.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^8.10.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^3.29.5",
"rollup-plugin-dts": "^6.1.1",
"semantic-release": "^24.2.0",
"standard-version": "^9.5.0",
"ts-jest": "^27.1.5",
"typescript": "^4.9.5",
"typescript-eslint": "^8.14.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}