hexo/node_modules/httpx/package.json

38 lines
991 B
JSON

{
"name": "httpx",
"version": "2.2.7",
"description": "http(s) module with power",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"lint": "eslint --fix lib",
"test": "mocha --reporter spec --timeout 3000 test/*.test.js",
"test-cov": "nyc -r=lcov -r=html -r=text -r=json mocha -t 3000 -R spec test/*.test.js",
"ci": "npm run test-cov && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "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": {
"coveralls": "^2.11.15",
"eslint": "^6.6.0",
"mocha": "^8",
"nyc": "^12.0.2",
"socks-proxy-agent": "^5.0.0"
},
"dependencies": {
"@types/node": "^14",
"debug": "^4.1.1"
},
"files": [
"lib"
]
}