testify-universal-cli
Version:
Universal interactive CLI tool for scanning and executing tests across multiple programming languages
65 lines (64 loc) • 1.45 kB
JSON
{
"name": "testify-universal-cli",
"version": "1.0.5",
"description": "Universal interactive CLI tool for scanning and executing tests across multiple programming languages",
"type": "module",
"main": "index.js",
"bin": {
"testify": "cli.js"
},
"files": [
"cli.js",
"index.js",
"lib/**/*"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "node cli.js",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "node lib/utils/postinstall.js",
"build": "mkdir -p dist && cp -r cli.js index.js lib dist/",
"deploy:npm": "npm version patch && npm publish",
"deploy:cloudflare": "wrangler publish",
"deploy": "npm run deploy:npm && npm run deploy:cloudflare"
},
"keywords": [
"cli",
"test",
"testing",
"runner",
"jest",
"vitest",
"pytest",
"rspec",
"go",
"java",
"rust",
"cross-platform"
],
"author": "Andrew Maguire",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"cli-cursor": "^4.0.0",
"execa": "^8.0.1",
"find-up": "^7.0.0",
"globby": "^14.0.0",
"inquirer": "^9.2.13",
"meow": "^13.2.0",
"ora": "^8.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewmaguire/testify-universal-cli.git"
},
"bugs": {
"url": "https://github.com/andrewmaguire/testify-universal-cli/issues"
},
"homepage": "https://github.com/andrewmaguire/testify-universal-cli#readme",
"publishConfig": {
"access": "public"
}
}