summaryrefslogtreecommitdiff
path: root/desktop/node_modules/isbinaryfile/package.json
blob: 9fbedbd979fd224314b9c69ca459b79e25847915 (plain)
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
{
  "name": "isbinaryfile",
  "description": "Detects if a file is binary in Node.js. Similar to Perl's -B.",
  "version": "4.0.10",
  "keywords": [
    "text",
    "binary",
    "encoding",
    "istext",
    "is text",
    "isbinary",
    "is binary",
    "is text or binary",
    "is text or binary file",
    "isbinaryfile",
    "is binary file",
    "istextfile",
    "is text file"
  ],
  "devDependencies": {
    "@types/jest": "^23.3.14",
    "@types/node": "^10.17.59",
    "jest": "^26.5.5",
    "prettier": "^1.19.1",
    "release-it": "^14.13.1",
    "ts-jest": "^26.5.5",
    "tslint": "^5.20.1",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^3.9.9"
  },
  "engines": {
    "node": ">= 8.0.0"
  },
  "files": [
    "lib/**/*"
  ],
  "license": "MIT",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "maintainers": [
    {
      "name": "Garen J. Torikian",
      "email": "gjtorikian@gmail.com"
    }
  ],
  "funding": "https://github.com/sponsors/gjtorikian/",
  "repository": {
    "type": "git",
    "url": "https://github.com/gjtorikian/isBinaryFile"
  },
  "scripts": {
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\" && tslint --fix -c tslint.json 'src/**/*.ts'",
    "lint": "tslint -p tsconfig.json",
    "prepare": "npm run build",
    "release": "release-it",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags",
    "test": "jest --config jestconfig.json",
    "watch": "tsc -w"
  }
}