chardet/package.json

61 lines
1.4 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",
"description": "Character 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",
"lint": "tslint -p tsconfig.json -c tslint.json",
"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
},
"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 01:58:42 +00:00
"jest": "^26.4.2",
"prettier": "^2.0.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",
"tslint": "^6.1.0",
2020-09-23 01:58:42 +00:00
"typescript": "^4.0.3"
},
"keywords": [
"encoding",
"character",
"utf8",
"detector",
"chardet",
"icu"
],
"author": "Dmitry Shirokov <deadrunk@gmail.com>",
"contributors": [
"@spikying",
"@wtgtybhertgeghgtwtg",
"@suisho",
"@seangarner",
"@zevanty"
]
}