tstest/package.json

35 lines
1.1 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",
2018-12-05 23:56:36 +00:00
"version": "1.0.17",
2018-08-03 17:18:42 +00:00
"private": false,
"description": "a test utility to run tests that match test/**/*.ts",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"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)",
"prepareTest": "git clone https://gitlab.com/sandboxzone/sandbox-npmts.git .nogit/sandbox-npmts && cd .nogit/sandbox-npmts && npm install",
"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": {
2018-12-05 23:56:36 +00:00
"@gitzone/tsbuild": "^2.1.3",
2018-12-05 23:38:03 +00:00
"@pushrocks/tapbundle": "^3.0.7"
2018-08-03 17:18:42 +00:00
},
"dependencies": {
2018-12-05 23:56:36 +00:00
"@gitzone/tsrun": "^1.1.17",
2018-08-04 12:23:07 +00:00
"@pushrocks/consolecolor": "^2.0.1",
2018-12-05 23:38:03 +00:00
"@pushrocks/smartfile": "^6.0.11",
"@pushrocks/smartlog": "^2.0.9",
2018-08-03 17:18:42 +00:00
"@pushrocks/smartpromise": "^2.0.5",
2018-12-05 23:38:03 +00:00
"@pushrocks/smartshell": "^2.0.11",
2018-08-04 17:41:00 +00:00
"@types/figures": "^2.0.0",
"figures": "^2.0.0"
2018-08-03 17:18:42 +00:00
}
2018-12-06 00:03:48 +00:00
}