2017-03-04 08:32:17 +01:00
{
2023-07-13 02:09:53 +02:00
"name" : "@push.rocks/tapbundle" ,
2018-06-28 23:34:41 +02:00
"private" : false ,
2024-09-18 18:43:46 +02:00
"version" : "5.2.0" ,
2024-04-14 18:36:42 +02:00
"description" : "A test automation library bundling utilities and tools for TAP (Test Anything Protocol) based testing, specifically tailored for tapbuffer." ,
2024-09-17 19:40:00 +02:00
"exports" : {
"." : "./dist_ts/index.js" ,
"./node" : "./dist_ts_node/index.js"
} ,
2022-03-14 11:22:17 +01:00
"type" : "module" ,
2017-03-04 08:32:17 +01:00
"scripts" : {
2018-08-08 23:17:06 +02:00
"test" : "(tstest test/)" ,
2024-09-17 19:40:00 +02:00
"build" : "(tsbuild tsfolders --web --allowimplicitany --skiplibcheck)" ,
2023-08-12 11:40:29 +02:00
"buildDocs" : "tsdoc"
2017-03-04 08:32:17 +01:00
} ,
"repository" : {
"type" : "git" ,
2024-05-29 14:17:23 +02:00
"url" : "https://code.foss.global/push.rocks/tapbundle.git"
2017-03-04 08:32:17 +01:00
} ,
"author" : "Lossless GmbH" ,
"license" : "MIT" ,
"bugs" : {
"url" : "https://gitlab.com/pushrocks/tapbundle/issues"
} ,
2024-05-29 14:17:23 +02:00
"homepage" : "https://code.foss.global/push.rocks/tapbundle" ,
2017-03-04 08:32:17 +01:00
"dependencies" : {
2024-03-13 22:13:30 +01:00
"@open-wc/testing" : "^4.0.0" ,
2024-03-13 22:07:58 +01:00
"@push.rocks/consolecolor" : "^2.0.2" ,
2024-09-18 17:56:53 +02:00
"@push.rocks/smartcrypto" : "^2.0.4" ,
2023-08-12 11:39:09 +02:00
"@push.rocks/smartdelay" : "^3.0.5" ,
2024-03-13 22:07:58 +01:00
"@push.rocks/smartenv" : "^5.0.12" ,
2024-09-17 19:40:00 +02:00
"@push.rocks/smartexpect" : "^1.2.1" ,
2024-08-17 07:30:11 +02:00
"@push.rocks/smartjson" : "^5.0.20" ,
"@push.rocks/smartpromise" : "^4.0.4" ,
2024-09-17 19:40:00 +02:00
"@push.rocks/smartshell" : "^3.0.6" ,
2024-08-17 07:30:11 +02:00
"@push.rocks/smarttime" : "^4.0.8"
2017-10-10 17:14:14 +02:00
} ,
"devDependencies" : {
2024-09-17 19:40:00 +02:00
"@git.zone/tsbuild" : "^2.1.66" ,
"@git.zone/tsrun" : "^1.2.43" ,
"@git.zone/tstest" : "^1.0.77" ,
"@types/node" : "^22.5.5" ,
2023-06-22 13:32:43 +02:00
"randomstring" : "^1.3.0"
2019-06-19 14:49:23 +02:00
} ,
"files" : [
2019-11-16 18:45:47 +01:00
"ts/**/*" ,
"ts_web/**/*" ,
"dist/**/*" ,
2020-07-08 00:17:25 +00:00
"dist_*/**/*" ,
"dist_ts/**/*" ,
2019-11-16 18:45:47 +01:00
"dist_ts_web/**/*" ,
"assets/**/*" ,
2019-06-19 14:49:23 +02:00
"cli.js" ,
"npmextra.json" ,
"readme.md"
2020-07-11 16:07:30 +00:00
] ,
"browserslist" : [
"last 1 chrome versions"
2024-04-14 18:36:42 +02:00
] ,
"keywords" : [
"testing" ,
"automation" ,
"TAP" ,
"test anything protocol" ,
"unit testing" ,
"integration testing" ,
"JavaScript" ,
"TypeScript" ,
"test runner" ,
"test framework" ,
"web helpers" ,
"test utilities"
2019-06-19 14:49:23 +02:00
]
2024-08-17 07:30:12 +02:00
}