| 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
 | | { |  |   "name": "chardet", |  |   "version": "0.7.0", |  |   "homepage": "https://github.com/runk/node-chardet", |  |   "description": "Character detector", |  |   "keywords": [ |  |     "encoding", |  |     "character", |  |     "utf8", |  |     "detector", |  |     "chardet", |  |     "icu" |  |   ], |  |   "author": "Dmitry Shirokov <deadrunk@gmail.com>", |  |   "contributors": [ |  |     "@spikying", |  |     "@wtgtybhertgeghgtwtg", |  |     "@suisho", |  |     "@seangarner", |  |     "@zevanty" |  |   ], |  |   "devDependencies": { |  |     "github-publish-release": "^5.0.0", |  |     "mocha": "^5.2.0" |  |   }, |  |   "repository": { |  |     "type": "git", |  |     "url": "git@github.com:runk/node-chardet.git" |  |   }, |  |   "bugs": { |  |     "mail": "deadrunk@gmail.com", |  |     "url": "http://github.com/runk/node-chardet/issues" |  |   }, |  |   "scripts": { |  |     "test": "mocha -R spec --recursive --bail", |  |     "release": "scripts/release" |  |   }, |  |   "main": "index.js", |  |   "engine": { |  |     "node": ">=4" |  |   }, |  |   "readmeFilename": "README.md", |  |   "directories": { |  |     "test": "test" |  |   }, |  |   "license": "MIT" |  | } | 
 |