package.json
 1  {
 2    "name": "html-encoding-sniffer",
 3    "description": "Sniff the encoding from a HTML byte stream",
 4    "keywords": [
 5      "encoding",
 6      "html"
 7    ],
 8    "version": "2.0.1",
 9    "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
10    "license": "MIT",
11    "repository": "jsdom/html-encoding-sniffer",
12    "main": "lib/html-encoding-sniffer.js",
13    "files": [
14      "lib/"
15    ],
16    "scripts": {
17      "test": "mocha",
18      "lint": "eslint ."
19    },
20    "dependencies": {
21      "whatwg-encoding": "^1.0.5"
22    },
23    "devDependencies": {
24      "eslint": "^6.8.0",
25      "mocha": "^7.0.0"
26    },
27    "engines": {
28      "node": ">=10"
29    }
30  }