-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.59 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "mime-types-lite",
"version": "1.6.0",
"description": "A collection of common MIME types for use in applications.",
"type": "module",
"main": "./build/cjs/index.cjs",
"module": "./build/esm/index.js",
"engines": {
"node": ">=23.x",
"npm": ">=10.x"
},
"keywords": [
"mime types",
"mime-types",
"mimetypes",
"MIME types",
"media types",
"media-type",
"file types",
"file-format",
"mime type constants",
"mime type library",
"mime type utility",
"mime type definitions",
"mime type enum",
"mime type mapping",
"HTTP mime types",
"web development mime types",
"API mime types",
"file processing mime types",
"data serialization mime types",
"data interchange mime types",
"TypeScript mime types",
"Node.js mime types",
"JavaScript mime types",
"web application mime types",
"mime negotiation",
"accept header",
"mime-type header",
"file upload mime types",
"multipart form data",
"JSON mime type",
"XML mime type",
"HTML mime type",
"CSS mime type",
"image mime types",
"video mime types",
"audio mime types",
"text mime types",
"application mime types",
"common mime types",
"standard mime types",
"predefined mime types",
"immutable mime types",
"lightweight mime types",
"efficient mime types",
"cross-platform mime types",
"open source mime types",
"npm package",
"mime-types-lite",
"montasim"
],
"author": {
"name": "Mohammad Montasim -Al- Mamun Shuvo",
"portfolio": "https://montasim-dev.web.app/",
"contact": {
"email": "[email protected]",
"mobile": "+8801722815469"
},
"social": {
"linkedIn": "https://www.linkedin.com/in/montasim",
"gitHub": "https://github.com/montasim"
}
},
"license": "CC BY-NC-ND 4.0",
"repository": {
"type": "git",
"url": "git+https://github.com/montasim/mime-types-lite.git"
},
"bugs": {
"url": "https://github.com/montasim/mime-types-lite/issues"
},
"homepage": "https://github.com/montasim/mime-types-lite",
"publishConfig": {
"access": "public"
},
"files": [
"build",
"README.md"
],
"scripts": {
"build": "eslint . --fix && prettier . --write && tsc && node scripts/compress.js",
"test": "jest",
"eslint:check": "eslint .",
"eslint:fix": "eslint . --fix",
"prettier:check": "prettier . --check",
"prettier:fix": "prettier . --write",
"lint:fix": "eslint . --fix && prettier . --write",
"prepare": "husky install",
"commitlint": "commitlint --edit",
"release": "HUSKY_SKIP_HOOKS=1 standard-version && git push --follow-tags",
"release:minor": "standard-version --release-as minor && git push --follow-tags",
"release:major": "standard-version --release-as major && git push --follow-tags",
"release:patch": "standard-version --release-as patch && git push --follow-tags"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.19.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"esbuild": "^0.24.2",
"eslint": "^9.19.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-security": "^3.0.1",
"globals": "^15.14.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"terser": "^5.37.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2"
}
}