-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
83 lines (83 loc) · 1.95 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
{
"name": "mimetics",
"version": "1.0.0",
"description": "Identifies file types based on magic bytes, patterns, and other unique file attributes.",
"author": "Basedwon <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/basedwon/mimetics#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/basedwon/mimetics.git"
},
"bugs": {
"url": "https://github.com/basedwon/mimetics/issues"
},
"main": "lib/mimetics.js",
"scripts": {
"dev": "nodemon test/tester.js",
"dev:test": "nodemon -x npm test",
"docs": "jsdoc2md lib/*.js > docs/api.md",
"update": "npm i -D @basd/testr@latest",
"test": "testr test/test.js"
},
"dependencies": {
"jszip": "^3.10.1"
},
"devDependencies": {
"@basd/testr": "^0.1.6",
"jsdoc": "^4.0.2",
"jsdoc-to-markdown": "^8.0.0"
},
"keywords": [
"mimetics",
"magic numbers",
"file type",
"mime type",
"media type",
"binary file type detection",
"text content analysis",
"file-type",
"magicbytes",
"file extension",
"mimetype",
"media type",
"file identification",
"file format",
"binary data",
"text data",
"buffer analysis",
"file analysis",
"file parsing",
"file metadata",
"mime",
"media",
"file detection",
"file recognition",
"content type",
"document type",
"image type",
"audio type",
"video type",
"mime detection",
"media detection",
"file signature",
"file header",
"file magic",
"file extension detection",
"file content detection",
"file analysis library",
"nodejs file analysis",
"data type detection",
"data analysis",
"nodejs data analysis",
"nodejs file identification",
"nodejs file recognition",
"buffer parsing",
"data parsing",
"filetype",
"mimetype detection",
"mediatype detection",
"binary file detection",
"text file detection"
]
}