smartrequest/package.json

55 lines
1.2 KiB
JSON
Raw Normal View History

2017-01-28 19:02:52 +00:00
{
2018-06-18 05:39:42 +00:00
"name": "@pushrocks/smartrequest",
2020-09-29 15:22:25 +00:00
"version": "1.1.51",
2018-06-13 21:12:37 +00:00
"private": false,
2017-01-28 19:02:52 +00:00
"description": "dropin replacement for request",
2020-08-24 12:01:38 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-01-28 19:02:52 +00:00
"scripts": {
2020-08-24 12:01:38 +00:00
"test": "(tstest test/ --web)",
"build": "(tsbuild --web)"
2017-01-28 19:02:52 +00:00
},
"repository": {
"type": "git",
"url": "git+ssh://git@gitlab.com/pushrocks/smartrequest.git"
},
"keywords": [
"request"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartrequest/issues"
},
2017-01-28 23:51:47 +00:00
"homepage": "https://gitlab.com/pushrocks/smartrequest#README",
"dependencies": {
2020-08-24 12:01:38 +00:00
"@pushrocks/smartpromise": "^3.0.6",
"agentkeepalive": "^4.1.3",
"form-data": "^3.0.0"
2017-01-28 23:51:47 +00:00
},
"devDependencies": {
2020-08-24 12:01:38 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsrun": "^1.2.12",
"@gitzone/tstest": "^1.0.44",
"@pushrocks/tapbundle": "^3.2.9",
"@types/node": "^14.6.0",
"tslint": "^6.1.3",
2019-08-22 10:38:11 +00:00
"tslint-config-prettier": "^1.18.0"
2019-08-16 19:38:50 +00:00
},
"files": [
2019-11-21 17:32:30 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-08-24 12:01:38 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-21 17:32:30 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-08-16 19:38:50 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-08-24 12:01:38 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-16 19:38:50 +00:00
]
2020-08-24 12:01:39 +00:00
}