UNPKG

812 BJSONView Raw
1{
2 "name": "is-binary-path",
3 "version": "3.0.0",
4 "description": "Check if a file path is a binary file",
5 "license": "MIT",
6 "repository": "sindresorhus/is-binary-path",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "author": {
9 "name": "Sindre Sorhus",
10 "email": "sindresorhus@gmail.com",
11 "url": "https://sindresorhus.com"
12 },
13 "type": "module",
14 "exports": {
15 "types": "./index.d.ts",
16 "default": "./index.js"
17 },
18 "sideEffects": false,
19 "engines": {
20 "node": ">=18.20"
21 },
22 "scripts": {
23 "test": "xo && ava"
24 },
25 "files": [
26 "index.js",
27 "index.d.ts"
28 ],
29 "keywords": [
30 "binary",
31 "extensions",
32 "extension",
33 "file",
34 "path",
35 "check",
36 "detect",
37 "is"
38 ],
39 "dependencies": {
40 "binary-extensions": "^3.0.0"
41 },
42 "devDependencies": {
43 "ava": "^6.1.2",
44 "xo": "^0.58.0"
45 }
46}