mirror of https://github.com/lukechilds/got.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1012 B
54 lines
1012 B
{
|
|
"name": "got",
|
|
"version": "2.2.0",
|
|
"description": "Simplified HTTP/HTTPS requests",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/got",
|
|
"maintainers": [
|
|
{
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
{
|
|
"name": "Vsevolod Strukchinsky",
|
|
"email": "floatdrop@gmail.com",
|
|
"url": "github.com/floatdrop"
|
|
}
|
|
],
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"scripts": {
|
|
"test": "taper test/test-*.js"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"keywords": [
|
|
"http",
|
|
"https",
|
|
"get",
|
|
"got",
|
|
"url",
|
|
"uri",
|
|
"request",
|
|
"util",
|
|
"utility",
|
|
"simple"
|
|
],
|
|
"dependencies": {
|
|
"duplexify": "^3.2.0",
|
|
"infinity-agent": "^0.1.0",
|
|
"isstream": "^0.1.1",
|
|
"object-assign": "^2.0.0",
|
|
"read-all-stream": "^0.1.0",
|
|
"timed-out": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"from2-array": "0.0.3",
|
|
"pem": "^1.4.4",
|
|
"tape": "^3.0.3",
|
|
"taper": "^0.3.0"
|
|
}
|
|
}
|
|
|