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": "magic-bytes.js",
"version": "1.0.15",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prettier": "prettier --write \"{src,__{tests,mocks}__}/**/*.{tsx,ts}\"",
"gen-tree": "ts-node ./src/create-snapshot.ts",
"pre-test": "jest --clear-cache",
"test": "jest",
"build": "tsc"
},
"repository": {
"url": "https://github.com/LarsKoelpin/magic-bytes",
"type": "git"
},
"author": "Lars Kölpin",
"license": "MIT",
"description": "Detect Filetype by bytes",
"keywords": [
"magic-bytes",
"mime",
"filetype",
"file",
"extension",
"magic byte",
"magic number",
"mime",
"mimetype",
"validation",
"javascript",
"upload"
],
"devDependencies": {
"@babel/preset-typescript": "^7.15.0",
"@changesets/cli": "^2.16.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.6.2",
"jest": "^27.0.6",
"prettier": "^2.6.1",
"regenerator-runtime": "^0.11.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.3.5",
"prettier-plugin-organize-imports": "^2.3.4"
}
}
|