-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 1.57 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
84
85
86
87
88
89
90
{
"name": "file-type-checker",
"version": "1.1.2",
"description": "Detect and validate file types by their signatures (✨magic numbers✨)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc --declaration",
"lint": "yarn eslint .",
"test": "jest --config jest.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nir11/file-type-checker.git"
},
"keywords": [
"file",
"type",
"checker",
"signature",
"magic",
"numbers",
"detect",
"validate",
"7z",
"aac",
"amr",
"avi",
"bmp",
"bpg",
"blend",
"cr2",
"elf",
"exr",
"flac",
"flv",
"gif",
"heic",
"ico",
"indd",
"jpeg",
"lzh",
"m4a",
"m4v",
"mkv",
"mov",
"mp3",
"mp4",
"ogg",
"orc",
"parquet",
"pdf",
"pbm",
"pgm",
"png",
"ppm",
"psd",
"ps",
"rar",
"rtf",
"sqlite",
"stl",
"swf",
"ttf",
"wav",
"webm",
"webp",
"zip"
],
"author": "Nir Almog",
"license": "MIT",
"bugs": {
"url": "https://github.com/nir11/file-type-checker/issues"
},
"homepage": "https://github.com/nir11/file-type-checker#readme",
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.45.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.7.0",
"ts-jest": "^29.0.5",
"typescript": "^5.1.6"
}
}