tstest/package.json

56 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2018-08-03 17:18:42 +00:00
{
2018-08-04 15:19:24 +00:00
"name": "@gitzone/tstest",
2020-10-01 14:22:07 +00:00
"version": "1.0.51",
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",
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",
2020-07-07 20:50:29 +00:00
"build": "(tsbuild --web)"
2018-08-03 17:18:42 +00:00
},
"devDependencies": {
2020-08-13 01:29:19 +00:00
"@gitzone/tsbuild": "^2.1.25",
"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": {
2020-08-13 01:29:19 +00:00
"@gitzone/tsbundle": "^1.0.78",
2020-06-01 19:52:24 +00:00
"@gitzone/tsrun": "^1.2.12",
2018-08-04 12:23:07 +00:00
"@pushrocks/consolecolor": "^2.0.1",
2020-06-01 20:48:54 +00:00
"@pushrocks/smartbrowser": "^1.0.17",
2020-08-13 01:29:19 +00:00
"@pushrocks/smartdelay": "^2.0.10",
"@pushrocks/smartexpress": "^3.0.76",
"@pushrocks/smartfile": "^8.0.0",
2020-09-29 15:14:32 +00:00
"@pushrocks/smartlog": "^2.0.39",
2019-10-02 08:56:02 +00:00
"@pushrocks/smartpromise": "^3.0.6",
"@pushrocks/smartshell": "^2.0.25",
2020-07-11 16:14:07 +00:00
"@pushrocks/tapbundle": "^3.2.9",
2019-05-22 14:43:02 +00:00
"@types/figures": "^3.0.1",
"figures": "^3.0.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
]
2020-07-12 00:47:42 +00:00
}