tstest/package.json

30 lines
990 B
JSON
Raw Normal View History

2018-08-03 17:18:42 +00:00
{
"name": "tstest",
2018-08-04 12:28:06 +00:00
"version": "1.0.2",
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",
"scripts": {
"test": "(npm run prepareTest && npm run tstest && npm run cleanUp)",
"prepareTest": "git clone git@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)",
"build": "echo \"Not needed for now\""
},
"devDependencies": {
"@pushrocks/tapbundle": "^3.0.1"
},
"dependencies": {
"@gitzone/tsrun": "^1.1.9",
2018-08-04 12:23:07 +00:00
"@pushrocks/consolecolor": "^2.0.1",
2018-08-03 17:18:42 +00:00
"@pushrocks/smartfile": "^6.0.3",
"@pushrocks/smartlog": "^2.0.1",
"@pushrocks/smartpromise": "^2.0.5",
"@pushrocks/smartshell": "^2.0.4"
}
2018-08-04 12:23:07 +00:00
}