smartexpect/package.json

61 lines
1.5 KiB
JSON
Raw Normal View History

2022-01-20 21:40:38 +00:00
{
2023-07-10 00:49:04 +00:00
"name": "@push.rocks/smartexpect",
2023-08-12 07:55:14 +00:00
"version": "1.0.21",
2022-01-20 21:40:38 +00:00
"private": false,
2024-04-14 15:34:23 +00:00
"description": "A testing library to manage expectations in code, offering both synchronous and asynchronous assertion methods.",
2022-01-20 21:40:38 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-24 10:45:29 +00:00
"type": "module",
2022-01-20 21:40:38 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2022-07-24 10:45:29 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2022-01-20 21:40:38 +00:00
},
"devDependencies": {
2023-06-22 09:57:29 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
2023-08-12 07:49:27 +00:00
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.12",
"@types/node": "^20.4.10"
2022-01-20 21:40:38 +00:00
},
2022-01-21 02:33:24 +00:00
"dependencies": {
2023-08-12 07:49:27 +00:00
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartpromise": "^4.0.2",
2022-01-21 16:37:30 +00:00
"fast-deep-equal": "^3.1.3"
2022-01-21 02:33:24 +00:00
},
2022-01-20 21:40:38 +00:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 15:34:23 +00:00
],
"keywords": [
"testing",
"assertions",
"code quality",
"unit testing",
"test driven development",
"synchronous testing",
"asynchronous testing",
"expectations",
"validation",
"development tools"
2024-05-29 12:13:00 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartexpect",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartexpect.git"
}
2024-04-14 15:34:23 +00:00
}