typedrequest/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2019-08-21 12:36:16 +00:00
{
"name": "@apiglobal/typedrequest",
2022-05-29 18:38:47 +00:00
"version": "2.0.4",
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/)",
2020-06-25 23:53:05 +00:00
"build": "(tsbuild --web && tsbundle npm)",
2019-08-21 12:36:16 +00:00
"format": "(gitzone format)"
},
"devDependencies": {
2022-05-29 18:38:46 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbundle": "^2.0.4",
"@gitzone/tstest": "^1.0.71",
"@pushrocks/smartenv": "^5.0.2",
"@pushrocks/smartexpress": "^4.0.5",
2022-03-24 19:02:58 +00:00
"@pushrocks/tapbundle": "^5.0.3",
2022-05-29 18:38:46 +00:00
"@types/node": "^17.0.36",
2020-10-09 10:25:28 +00:00
"tslint": "^6.1.3",
2019-08-22 14:44:44 +00:00
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
2020-07-14 02:20:15 +00:00
"@apiglobal/typedrequest-interfaces": "^1.0.15",
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-05-29 18:38:46 +00:00
"@pushrocks/webrequest": "^3.0.5"
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
]
2020-10-06 15:05:29 +00:00
}