-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.56 KB
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
{
"name": "@magic/mime-types",
"version": "0.0.22",
"author": "Wizards & Witches",
"description": "mime-db, in a key => value store where keys are extensions and values are mime/types",
"license": "AGPL-3.0",
"homepage": "https://magic.github.io/mime-types",
"main": "src/index.js",
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"start": "npm test",
"build": "npm run build:docs && bin/bin.js && tsc && npm run format",
"prepublishOnly": "npm run build",
"test": "t --exclude docs",
"format": "f -w --exclude docs",
"format:check": "f",
"calls": "calls",
"build:docs": "NODE_ENV=production magic build",
"prod": "NODE_ENV=production magic build serve",
"clean": "magic clean",
"serve": "magic serve",
"dev": "magic dev"
},
"engines": {
"node": ">=14.15.4"
},
"engineStrict": true,
"repository": {
"type": "git",
"url": "https://github.com/magic/mime-types.git"
},
"bugs": {
"url": "https://github.com/magic/mime-types/issues"
},
"devDependencies": {
"@magic-modules/git-badges": "0.0.12",
"@magic-modules/light-switch": "0.0.12",
"@magic-modules/no-spy": "0.0.9",
"@magic-modules/pre": "0.0.12",
"@magic-themes/docs": "0.0.15",
"@magic/core": "0.0.156",
"@magic/format": "0.0.68",
"@magic/fs": "0.0.36",
"@magic/log": "0.1.21",
"@magic/test": "0.2.25",
"mime-db": "1.54.0",
"typescript": "5.9.3"
},
"files": [
"src",
"types"
],
"contributors": [
{
"name": "jascha ehrenreich",
"github": "jaeh"
}
]
}