generated from Richienb/typescript-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.21 KB
/
package.json
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
{
"name": "fetch-charset-detection",
"version": "1.0.1",
"description": "Detect the encoding of a buffer and stringify it.",
"repository": "https://github.com/Richienb/fetch-charset-detection.git",
"author": "Richie Bendall <richiebendall@gmail.com>",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=12.20"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "xo",
"test": "xo && ava",
"prepublishOnly": "tsc"
},
"keywords": [
"content-type",
"headers",
"http",
"meta",
"parse",
"buffer",
"node-fetch"
],
"dependencies": {
"cheerio": "^1.0.0-rc.10",
"content-type": "^1.0.4",
"iconv-lite": "^0.6.3",
"type-fest": "^2.0.0"
},
"devDependencies": {
"@richienb/tsconfig": "^0.3.0",
"@types/cheerio": "^0.22.30",
"@types/content-type": "^1.1.5",
"@types/node": "^16.4.13",
"ava": "^3.15.0",
"node-fetch": "3.0.0-beta.10",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"xo": "^0.43.0"
},
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm"
]
}
}