-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1013 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
45
46
47
48
{
"name": "detect-file-type",
"version": "0.2.8",
"description": "Detect file type by signature",
"main": "lib/index.js",
"scripts": {
"build": "babel -d lib src",
"prepublishOnly": "npm test && npm run build",
"test": "mocha --require @babel/register tests/test.js"
},
"files": [
"lib/index.js",
"signatures.json"
],
"author": {
"name": "Dmitry Pavlovsky",
"email": "dima@paloskin.me",
"url": "http://paloskin.me"
},
"repository": "dimapaloskin/detect-file-type",
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"file",
"type",
"mime",
"detect",
"check",
"uint8array",
"check",
"buffer"
],
"license": "WTFPL",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/register": "^7.4.0",
"chai": "^4.2.0",
"is-html": "^1.0.0",
"mocha": "^6.0.2"
},
"dependencies": {
"iconv-lite": "^0.5.1",
"jschardet": "^2.1.1"
}
}