UNPKG

metatests

Version:

Simple to use test engine for Metarhia technology stack

68 lines (67 loc) 1.68 kB
{ "name": "metatests", "version": "0.9.1", "author": "Timur Shemsedinov <timur.shemsedinov@gmail.com>", "description": "Simple to use test engine for Metarhia technology stack", "license": "MIT", "readmeFilename": "README.md", "repository": { "type": "git", "url": "https://github.com/metarhia/metatests" }, "keywords": [ "test", "testing", "unittesting", "unit-testing", "tdd", "tap", "metarhia" ], "bugs": { "url": "https://github.com/metarhia/metatests/issues" }, "main": "metatests.js", "exports": { ".": { "require": "./metatests.js", "import": "./metatests.mjs" } }, "bin": { "metatests": "bin/cli.js" }, "types": "types/metatests.d.ts", "files": [ "bin/*.js", "lib/", "benchmarks/compare.R", "types/" ], "scripts": { "doc": "metadoc", "test": "npm run lint && npm run types && node bin/cli.js test --exclude test/fixtures", "test:unit": "node test/unit", "perf": "./bin/cli.js benchmarks", "types": "tsc -p tsconfig.json", "lint": "eslint . && prettier --check \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"", "fix": "eslint . --fix && prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \"**/*.ts\"" }, "engines": { "node": "18 || 20 || 21 || 22 || 23 || 24" }, "dependencies": { "@metarhia/common": "^2.2.2", "tap-mocha-reporter": "^5.0.3", "tap-yaml": "^1.0.2", "yaml": "^2.5.0", "yargs": "^17.7.2" }, "devDependencies": { "@types/node": "^22.15.21", "eslint": "^9.27.0", "eslint-config-metarhia": "^9.1.1", "prettier": "^3.5.3", "typescript": "^5.8.3" } }