-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 887 Bytes
/
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
{
"name": "mrmime",
"version": "2.0.0",
"repository": "lukeed/mrmime",
"description": "A tiny (2.8kB) and fast utility for getting a MIME type from an extension or filename",
"module": "index.mjs",
"types": "index.d.ts",
"main": "index.js",
"license": "MIT",
"author": {
"name": "Luke Edwards",
"email": "[email protected]",
"url": "https://lukeed.com"
},
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"files": [
"index.d.ts",
"index.mjs",
"index.js"
],
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsm bin/index.ts",
"test": "uvu -r tsm test"
},
"keywords": [
"mime",
"extension",
"mimetype"
],
"devDependencies": {
"tsm": "2.3.0",
"uvu": "0.5.2"
}
}