tstest/package.json

57 lines
1.6 KiB
JSON
Raw Normal View History

2018-08-03 17:18:42 +00:00
{
2018-08-04 15:19:24 +00:00
"name": "@gitzone/tstest",
2022-03-25 00:30:34 +00:00
"version": "1.0.70",
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",
2022-03-25 00:30:33 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2018-08-03 17:18:42 +00:00
},
"devDependencies": {
2022-03-25 00:30:33 +00:00
"@gitzone/tsbuild": "^2.1.61",
2020-08-13 01:29:19 +00:00
"tslint": "^6.1.3",
2020-06-01 20:48:54 +00:00
"tslint-config-prettier": "^1.18.0"
2018-08-03 17:18:42 +00:00
},
"dependencies": {
2022-05-04 16:58:35 +00:00
"@gitzone/tsbundle": "^2.0.2",
2022-03-25 00:30:33 +00:00
"@gitzone/tsrun": "^1.2.32",
2018-08-04 12:23:07 +00:00
"@pushrocks/consolecolor": "^2.0.1",
2022-03-25 00:30:33 +00:00
"@pushrocks/smartbrowser": "^2.0.2",
2021-08-20 16:23:39 +00:00
"@pushrocks/smartdelay": "^2.0.13",
2022-05-04 16:58:35 +00:00
"@pushrocks/smartexpress": "^4.0.4",
2022-03-12 23:30:32 +00:00
"@pushrocks/smartfile": "^9.0.6",
2021-08-20 16:23:39 +00:00
"@pushrocks/smartlog": "^2.0.44",
2022-03-12 23:30:32 +00:00
"@pushrocks/smartpromise": "^3.1.7",
2022-02-14 22:50:07 +00:00
"@pushrocks/smartshell": "^2.0.30",
2022-03-25 00:30:33 +00:00
"@pushrocks/tapbundle": "^5.0.3",
2019-05-22 14:43:02 +00:00
"@types/figures": "^3.0.1",
2022-05-04 16:58:35 +00:00
"figures": "^4.0.1"
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-02-14 22:50:07 +00:00
}