chardet/package.json

98 lines
2.1 KiB
JSON
Raw Normal View History

{
2013-05-07 13:27:05 +00:00
"name": "chardet",
2019-07-11 23:12:00 +00:00
"version": "0.0.0-development",
2013-05-07 13:27:05 +00:00
"homepage": "https://github.com/runk/node-chardet",
2020-09-25 11:27:49 +00:00
"description": "Character encoding detector",
"license": "MIT",
2013-05-07 13:27:05 +00:00
"repository": {
"type": "git",
2019-07-11 23:12:00 +00:00
"url": "https://github.com/runk/node-chardet.git"
2013-05-07 13:27:05 +00:00
},
"bugs": {
"mail": "deadrunk@gmail.com",
"url": "http://github.com/runk/node-chardet/issues"
},
"scripts": {
"build": "rm -rf lib/* && tsc",
2020-09-23 02:16:38 +00:00
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:types": "tsc --noEmit",
"format": "prettier --write ./src/**/*.ts",
"format:check": "prettier --list-different ./src/**/*.ts",
"test": "jest",
"prepublish": "npm run build",
2019-07-11 23:12:00 +00:00
"semantic-release": "semantic-release"
2013-05-07 13:27:05 +00:00
},
2020-09-23 01:51:11 +00:00
"files": ["lib"],
2020-09-25 11:27:49 +00:00
"main": "lib/index.js",
"typings": "lib/index.d.ts",
2013-05-07 13:27:05 +00:00
"engine": {
2017-10-16 02:29:32 +00:00
"node": ">=4"
2013-05-07 13:27:05 +00:00
},
"readmeFilename": "README.md",
"directories": {
"test": "test"
2013-08-06 01:35:58 +00:00
},
"devDependencies": {
2020-09-23 01:58:42 +00:00
"@types/jest": "^26.0.14",
2020-09-23 02:01:39 +00:00
"@types/node": "^14.11.2",
2020-09-23 02:16:38 +00:00
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
2020-09-23 01:58:42 +00:00
"jest": "^26.4.2",
2020-09-23 03:10:34 +00:00
"prettier": "^2.1.2",
2020-09-23 02:01:39 +00:00
"semantic-release": "^17.1.2",
2020-09-23 01:58:42 +00:00
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
},
"keywords": [
"encoding",
"character",
"utf8",
"detector",
"chardet",
2020-09-25 11:27:49 +00:00
"icu",
"character detection",
"character encoding",
"language",
"iconv",
"iconv-light",
"UTF-8",
"UTF-16",
"UTF-32",
"ISO-2022-JP",
"ISO-2022-KR",
"ISO-2022-CN",
"Shift_JIS",
"Big5",
"EUC-JP",
"EUC-KR",
"GB18030",
"ISO-8859-1",
"ISO-8859-2",
"ISO-8859-5",
"ISO-8859-6",
"ISO-8859-7",
"ISO-8859-8",
"ISO-8859-9",
"windows-1250",
"windows-1251",
"windows-1252",
"windows-1253",
"windows-1254",
"windows-1255",
"windows-1256",
"KOI8-R"
],
"author": "Dmitry Shirokov <deadrunk@gmail.com>",
"contributors": [
"@spikying",
"@wtgtybhertgeghgtwtg",
"@suisho",
"@seangarner",
"@zevanty"
2020-09-25 11:27:49 +00:00
],
"browser": {
"./lib/fs/node.js": "./lib/fs/browser.js"
}
}