test-sdk/package.json

57 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2020-07-04 15:22:44 +00:00
{
2024-04-14 16:57:25 +00:00
"name": "@api.global/test-sdk",
2023-03-20 13:47:10 +00:00
"version": "2.0.2",
2020-07-04 15:22:44 +00:00
"private": false,
2024-04-14 16:57:25 +00:00
"description": "A software development kit for testing API Gateway handlers.",
2020-07-04 15:22:44 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2020-07-04 15:57:01 +00:00
"test": "(tstest test/ --web)",
2023-03-20 13:36:27 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2023-03-20 13:23:33 +00:00
"buildDocs": "tsdoc"
2020-07-04 15:22:44 +00:00
},
"devDependencies": {
2020-09-23 23:30:54 +00:00
"@gitzone/tsbuild": "^2.1.25",
2023-03-20 13:47:09 +00:00
"@gitzone/tsrun": "^1.2.39",
2020-10-20 20:31:28 +00:00
"@gitzone/tstest": "^1.0.52",
2023-03-20 13:23:33 +00:00
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.15.3"
2020-07-05 17:53:49 +00:00
},
"dependencies": {
2023-03-20 13:23:33 +00:00
"@apiglobal/sdk": "^2.0.1",
"@apiglobal/typedrequest": "^2.0.12",
"@apiglobal/typedrequest-interfaces": "^2.0.1",
"@pushrocks/qenv": "^5.0.2",
"@pushrocks/smartexpress": "^4.0.28",
2020-07-25 16:58:06 +00:00
"@pushrocks/smartobject": "^1.0.4"
2020-07-04 15:22:44 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-10-20 20:31:28 +00:00
],
"browserslist": [
"last 1 chrome versions"
2023-03-20 13:23:33 +00:00
],
2024-04-14 16:57:25 +00:00
"type": "module",
"keywords": [
"API testing",
"SDK",
"development tools",
"API Gateway",
"server simulation",
"handlers testing",
"automated testing",
"TypeScript",
"Node.js"
]
}