tstest/package.json

58 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2018-08-03 17:18:42 +00:00
{
2023-08-26 12:39:47 +00:00
"name": "@git.zone/tstest",
2024-04-18 18:50:46 +00:00
"version": "1.0.90",
2018-08-03 17:18:42 +00:00
"private": false,
"description": "a test utility to run tests that match test/**/*.ts",
2020-06-01 18:40:22 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-12 23:30:32 +00:00
"type": "module",
2018-08-03 17:18:42 +00:00
"author": "Lossless GmbH",
"license": "MIT",
2018-08-04 13:51:44 +00:00
"bin": {
"tstest": "./cli.js"
},
2018-08-03 17:18:42 +00:00
"scripts": {
2020-07-07 21:59:07 +00:00
"test": "(npm run cleanUp && npm run prepareTest && npm run tstest)",
"prepareTest": "git clone https://gitlab.com/sandboxzone/sandbox-npmts.git .nogit/sandbox-npmts && cd .nogit/sandbox-npmts && npm install",
2020-07-07 20:50:29 +00:00
"tstest": "cd .nogit/sandbox-npmts && node ../../cli.ts.js test/ --web",
"cleanUp": "rm -rf .nogit/sandbox-npmts",
2023-07-13 01:19:11 +00:00
"build": "(tsbuild --web --allowimplicitany --skiplibcheck)",
2022-11-08 07:04:46 +00:00
"buildDocs": "tsdoc"
2018-08-03 17:18:42 +00:00
},
"devDependencies": {
2024-01-19 19:59:01 +00:00
"@git.zone/tsbuild": "^2.1.72",
2024-04-18 18:47:25 +00:00
"@types/node": "^20.12.7"
2018-08-03 17:18:42 +00:00
},
"dependencies": {
2024-03-07 12:10:57 +00:00
"@api.global/typedserver": "^3.0.27",
2024-01-19 19:59:01 +00:00
"@git.zone/tsbundle": "^2.0.15",
2023-08-26 13:42:18 +00:00
"@git.zone/tsrun": "^1.2.46",
2024-04-18 18:47:25 +00:00
"@push.rocks/consolecolor": "^2.0.2",
2023-11-09 16:55:26 +00:00
"@push.rocks/smartbrowser": "^2.0.6",
2023-08-26 12:39:47 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2024-04-18 18:47:25 +00:00
"@push.rocks/smartfile": "^11.0.14",
2023-07-13 01:19:11 +00:00
"@push.rocks/smartlog": "^3.0.3",
"@push.rocks/smartpromise": "^4.0.3",
2024-04-18 18:47:25 +00:00
"@push.rocks/smartshell": "^3.0.5",
"@push.rocks/tapbundle": "^5.0.23",
2024-01-19 19:59:01 +00:00
"@types/ws": "^8.5.10",
2024-03-07 12:10:57 +00:00
"figures": "^6.1.0",
2024-01-19 19:59:01 +00:00
"ws": "^8.16.0"
2019-10-02 09:18:45 +00:00
},
"files": [
2020-06-01 19:29:56 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-10-02 09:18:45 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-07-12 00:47:41 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-10-02 09:18:45 +00:00
]
2022-11-08 07:04:46 +00:00
}