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.
36 lines
583 B
36 lines
583 B
{
|
|
"name": "got",
|
|
"version": "0.1.0",
|
|
"description": "Simplified HTTP/HTTPS GET requests",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/got",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "http://sindresorhus.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"keywords": [
|
|
"http",
|
|
"https",
|
|
"get",
|
|
"got",
|
|
"url",
|
|
"uri",
|
|
"request",
|
|
"util",
|
|
"utility",
|
|
"simple"
|
|
],
|
|
"devDependencies": {
|
|
"mocha": "*"
|
|
}
|
|
}
|
|
|