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
|
{
"name": "mmmagic",
"version": "0.5.3",
"author": "Brian White <mscdex@mscdex.net>",
"description": "An async libmagic binding for node.js for detecting content types by data inspection",
"main": "./lib/index",
"dependencies": {
"nan": "^2.13.2"
},
"scripts": {
"install": "node-gyp rebuild",
"test": "node test/test.js"
},
"engines": {
"node": ">=4.0.0"
},
"keywords": [
"magic",
"libmagic",
"file",
"filetype",
"mime",
"mimetype"
],
"licenses": [
{
"type": "MIT",
"url": "http://github.com/mscdex/mmmagic/raw/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "http://github.com/mscdex/mmmagic.git"
}
}
|