typedrequest/package.json

49 lines
1.2 KiB
JSON
Raw Normal View History

2019-08-21 12:36:16 +00:00
{
"name": "@apiglobal/typedrequest",
2022-10-26 12:23:24 +00:00
"version": "2.0.13",
2019-08-21 12:36:16 +00:00
"private": false,
"description": "make typed requests towards apis",
2020-06-15 16:39:48 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-24 19:02:58 +00:00
"type": "module",
2019-08-21 12:36:16 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2022-05-29 18:43:29 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
2022-10-09 16:57:31 +00:00
"buildDocs": "tsdoc"
2019-08-21 12:36:16 +00:00
},
"devDependencies": {
2022-08-18 21:24:04 +00:00
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsbundle": "^2.0.7",
"@gitzone/tstest": "^1.0.73",
"@pushrocks/smartenv": "^5.0.3",
"@pushrocks/smartexpress": "^4.0.21",
2022-07-29 02:48:34 +00:00
"@pushrocks/tapbundle": "^5.0.4",
2022-08-18 21:24:04 +00:00
"@types/node": "^18.7.6"
2019-08-22 14:44:44 +00:00
},
"dependencies": {
2022-10-26 12:23:24 +00:00
"@apiglobal/typedrequest-interfaces": "^2.0.0",
2022-03-24 19:02:58 +00:00
"@pushrocks/isounique": "^1.0.5",
2022-05-29 18:38:46 +00:00
"@pushrocks/lik": "^6.0.0",
2021-09-27 10:14:43 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2022-03-24 19:02:58 +00:00
"@pushrocks/smartpromise": "^3.1.7",
2022-08-19 15:59:47 +00:00
"@pushrocks/webrequest": "^3.0.13"
2019-08-21 12:36:16 +00:00
},
2019-08-21 12:37:02 +00:00
"files": [
2020-02-11 18:55:07 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-06-15 16:39:48 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-02-11 18:55:07 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-08-21 12:37:02 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-10-06 15:05:29 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-21 12:37:02 +00:00
]
2022-10-09 16:57:31 +00:00
}