mime-types-lite 1.0.1 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +24 -4
package/package.json
CHANGED
|
@@ -1,18 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mime-types-lite",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "A collection of common MIME types for use in applications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "build/index.js",
|
|
7
7
|
"engines": {
|
|
8
|
-
"node": ">=
|
|
8
|
+
"node": ">=20.x",
|
|
9
9
|
"npm": ">=10.x"
|
|
10
10
|
},
|
|
11
11
|
"keywords": [
|
|
12
12
|
"MIME types",
|
|
13
|
+
"mime types",
|
|
13
14
|
"constants",
|
|
14
15
|
"MIME",
|
|
15
|
-
"file types"
|
|
16
|
+
"file types",
|
|
17
|
+
"type",
|
|
18
|
+
"types",
|
|
19
|
+
"extension",
|
|
20
|
+
"file",
|
|
21
|
+
"mime",
|
|
22
|
+
"lite",
|
|
23
|
+
"mime-db",
|
|
24
|
+
"mimetypes"
|
|
16
25
|
],
|
|
17
26
|
"author": {
|
|
18
27
|
"name": "Mohammad Montasim -Al- Mamun Shuvo",
|
|
@@ -49,9 +58,17 @@
|
|
|
49
58
|
"eslint:fix": "eslint . --fix",
|
|
50
59
|
"prettier:check": "prettier . --check",
|
|
51
60
|
"prettier:fix": "prettier . --write",
|
|
52
|
-
"lint:fix": "eslint . --fix && prettier . --write"
|
|
61
|
+
"lint:fix": "eslint . --fix && prettier . --write",
|
|
62
|
+
"prepare": "husky install",
|
|
63
|
+
"commitlint": "commitlint --edit",
|
|
64
|
+
"release": "HUSKY_SKIP_HOOKS=1 standard-version && git push --follow-tags",
|
|
65
|
+
"release:minor": "standard-version --release-as minor && git push --follow-tags",
|
|
66
|
+
"release:major": "standard-version --release-as major && git push --follow-tags",
|
|
67
|
+
"release:patch": "standard-version --release-as patch && git push --follow-tags"
|
|
53
68
|
},
|
|
54
69
|
"devDependencies": {
|
|
70
|
+
"@commitlint/cli": "^19.6.1",
|
|
71
|
+
"@commitlint/config-conventional": "^19.6.0",
|
|
55
72
|
"@eslint/js": "^9.19.0",
|
|
56
73
|
"@types/jest": "^29.5.14",
|
|
57
74
|
"@typescript-eslint/eslint-plugin": "^8.22.0",
|
|
@@ -61,8 +78,11 @@
|
|
|
61
78
|
"eslint-plugin-prettier": "^5.2.1",
|
|
62
79
|
"eslint-plugin-security": "^3.0.1",
|
|
63
80
|
"globals": "^15.14.0",
|
|
81
|
+
"husky": "^9.1.4",
|
|
64
82
|
"jest": "^29.7.0",
|
|
83
|
+
"lint-staged": "^15.2.9",
|
|
65
84
|
"prettier": "^3.3.3",
|
|
85
|
+
"standard-version": "^9.5.0",
|
|
66
86
|
"ts-jest": "^29.2.5",
|
|
67
87
|
"ts-node": "^10.9.2"
|
|
68
88
|
}
|