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.

85 lines
1.7 KiB

11 years ago
{
"name": "got",
8 years ago
"version": "6.7.1",
9 years ago
"description": "Simplified HTTP requests",
11 years ago
"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"
},
{
"name": "Alexander Tesfamichael",
"email": "alex.tesfamichael@gmail.com",
"url": "alextes.me"
}
],
11 years ago
"engines": {
"node": ">=4"
11 years ago
},
"scripts": {
9 years ago
"test": "xo && nyc ava",
9 years ago
"coveralls": "nyc report --reporter=text-lcov | coveralls"
11 years ago
},
"files": [
"index.js"
],
"keywords": [
"http",
"https",
"get",
"got",
"url",
"uri",
"request",
"util",
"utility",
10 years ago
"simple",
"curl",
"wget",
"fetch"
11 years ago
],
"dependencies": {
"decompress-response": "^3.2.0",
"duplexer3": "^0.1.4",
"get-stream": "^3.0.0",
"is-plain-obj": "^1.1.0",
"is-redirect": "^1.0.0",
"is-retry-allowed": "^1.0.0",
10 years ago
"is-stream": "^1.0.0",
"isurl": "^1.0.0-alpha5",
"lowercase-keys": "^1.0.0",
"p-cancelable": "^0.2.0",
"safe-buffer": "^5.0.1",
"timed-out": "^4.0.0",
"url-parse-lax": "^1.0.0"
},
11 years ago
"devDependencies": {
"ava": "^0.19.1",
9 years ago
"coveralls": "^2.11.4",
"form-data": "^2.1.1",
"get-port": "^3.0.0",
"into-stream": "^3.0.0",
8 years ago
"nyc": "^10.0.0",
"pem": "^1.4.4",
9 years ago
"pify": "^2.3.0",
"tempfile": "^1.1.1",
"tempy": "^0.1.0",
"universal-url": "^1.0.0-alpha",
"xo": "^0.18.0"
},
"ava": {
"concurrency": 4
},
"browser": {
"decompress-response": false
11 years ago
}
}