smartrequest/package.json

56 lines
1.3 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",
2022-07-30 16:43:11 +00:00
"version": "2.0.6",
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",
2022-07-28 23:19:50 +00:00
"type": "module",
2017-01-28 19:02:52 +00:00
"scripts": {
2020-08-24 12:01:38 +00:00
"test": "(tstest test/ --web)",
2022-07-28 23:19:50 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
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": {
2022-07-28 23:19:50 +00:00
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smarturl": "^3.0.2",
2022-07-29 23:52:04 +00:00
"agentkeepalive": "^4.2.1",
2021-05-16 23:39:25 +00:00
"form-data": "^4.0.0"
2017-01-28 23:51:47 +00:00
},
"devDependencies": {
2022-07-28 23:19:50 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsrun": "^1.2.37",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
2022-07-29 13:43:55 +00:00
"@types/node": "^18.6.2"
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
]
2022-07-28 23:19:50 +00:00
}