-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
39 lines (39 loc) · 922 Bytes
/
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
{
"name": "httpx",
"version": "3.0.1",
"description": "http(s) module with power",
"main": "./lib/index.js",
"exports": "./lib/index.js",
"type": "module",
"scripts": {
"lint": "eslint --fix lib test",
"test": "mocha --reporter spec --timeout 3000 test/*.test.js",
"test-cov": "c8 -r=lcov -r=html -r=text -r=json mocha -t 3000 -R spec test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JacksonTian/httpx.git"
},
"author": "Jackson Tian",
"license": "MIT",
"bugs": {
"url": "https://github.com/JacksonTian/httpx/issues"
},
"homepage": "https://github.com/JacksonTian/httpx",
"devDependencies": {
"c8": "^8.0.1",
"eslint": "^8.26.0",
"mocha": "^10",
"socks-proxy-agent": "^7",
"socksv5": "^0.0.6"
},
"engines": {
"node": ">= 12"
},
"dependencies": {
"debug": "^4.1.1"
},
"files": [
"lib"
]
}