forked from sindresorhus/got
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 2.41 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "got",
"version": "9.6.0",
"description": "Simplified HTTP requests",
"license": "MIT",
"repository": "sindresorhus/got",
"main": "dist",
"engines": {
"node": ">=8.6"
},
"scripts": {
"test": "xo && nyc ava",
"release": "np",
"build": "del-cli dist && tsc",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"http",
"https",
"get",
"got",
"url",
"uri",
"request",
"util",
"utility",
"simple",
"curl",
"wget",
"fetch",
"net",
"network",
"electron",
"brotli"
],
"dependencies": {
"@sindresorhus/is": "^0.15.0",
"@szmarczak/http-timer": "^2.0.0",
"@types/cacheable-request": "^6.0.1",
"@types/form-data": "^2.2.1",
"cacheable-lookup": "^0.2.1",
"cacheable-request": "^6.0.0",
"debug": "^4.1.1",
"decompress-response": "^4.2.0",
"duplexer3": "^0.1.4",
"get-stream": "^5.0.0",
"lowercase-keys": "^1.0.1",
"mimic-response": "^2.0.0",
"p-cancelable": "^2.0.0",
"to-readable-stream": "^2.0.0",
"type-fest": "^0.4.1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.3.0",
"@types/duplexer3": "^0.1.0",
"@types/node": "^11.13.6",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"ava": "^1.4.1",
"coveralls": "^3.0.0",
"create-test-server": "^2.4.0",
"del-cli": "^1.1.0",
"delay": "^4.1.0",
"eslint-config-xo-typescript": "^0.10.1",
"form-data": "^2.3.3",
"get-port": "^5.0.0",
"nock": "^10.0.6",
"np": "^5.0.0",
"nyc": "^14.0.0",
"p-event": "^4.0.0",
"pem": "^1.14.1",
"proxyquire": "^2.0.1",
"sinon": "^7.2.2",
"slow-stream": "0.0.4",
"tempfile": "^2.0.0",
"tempy": "^0.3.0",
"tough-cookie": "^3.0.0",
"ts-node": "^8.0.3",
"typescript": "^3.4.4",
"xo": "^0.24.0"
},
"types": "dist",
"browser": {
"decompress-response": false,
"electron": false
},
"ava": {
"concurrency": 4,
"timeout": "1m",
"babel": false,
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"nyc": {
"extension": [
".ts"
]
},
"xo": {
"extends": "xo-typescript",
"extensions": [
"ts"
],
"rules": {
"import/named": "off",
"import/no-unresolved": "off",
"ava/no-ignored-test-files": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unnecessary-type-assertion": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/no-object-literal-type-assertion": "off"
}
}
}