2018-08-03 17:18:42 +00:00
|
|
|
{
|
2018-08-04 15:19:24 +00:00
|
|
|
"name": "@gitzone/tstest",
|
2020-06-01 19:29:57 +00:00
|
|
|
"version": "1.0.30",
|
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": {
|
|
|
|
"test": "(npm run prepareTest && npm run tstest && npm run cleanUp)",
|
2018-08-04 14:04:11 +00:00
|
|
|
"prepareTest": "git clone https://gitlab.com/sandboxzone/sandbox-npmts.git .nogit/sandbox-npmts && cd .nogit/sandbox-npmts && npm install",
|
2018-08-04 12:28:06 +00:00
|
|
|
"tstest": "cd .nogit/sandbox-npmts && node ../../cli.ts.js test/",
|
|
|
|
"cleanUp": "rm -rf .nogit/sandbox-npmts",
|
2018-08-03 17:18:42 +00:00
|
|
|
"format": "(gitzone format)",
|
2018-08-04 13:51:44 +00:00
|
|
|
"build": "(tsbuild)"
|
2018-08-03 17:18:42 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-10-02 08:56:02 +00:00
|
|
|
"@gitzone/tsbuild": "^2.1.17",
|
|
|
|
"@pushrocks/tapbundle": "^3.0.13"
|
2018-08-03 17:18:42 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-06-01 18:40:22 +00:00
|
|
|
"@gitzone/tsbundle": "^1.0.69",
|
|
|
|
"@gitzone/tsrun": "^1.2.10",
|
2018-08-04 12:23:07 +00:00
|
|
|
"@pushrocks/consolecolor": "^2.0.1",
|
2019-10-02 08:56:02 +00:00
|
|
|
"@pushrocks/smartfile": "^7.0.6",
|
2019-04-08 15:50:57 +00:00
|
|
|
"@pushrocks/smartlog": "^2.0.19",
|
2019-10-02 08:56:02 +00:00
|
|
|
"@pushrocks/smartpromise": "^3.0.6",
|
|
|
|
"@pushrocks/smartshell": "^2.0.25",
|
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-06-01 19:29:57 +00:00
|
|
|
}
|