UNPKG

@gullerya/just-test

Version:

JavaScript multiplatform tests runner

72 lines (71 loc) 2.24 kB
{ "name": "@gullerya/just-test", "version": "4.0.6", "description": "JavaScript multiplatform tests runner", "keywords": [ "javascript", "testing", "framework", "multiplatform", "test", "tests", "coverage", "lcov", "test", "report", "results", "xUnit" ], "license": "MIT", "author": { "name": "Guller Yuri", "email": "gullerya@gmail.com" }, "homepage": "https://github.com/gullerya/just-test", "funding": "https://paypal.me/gullerya?locale.x=en_US", "repository": { "type": "git", "url": "https://github.com/gullerya/just-test" }, "bugs": { "url": "https://github.com/gullerya/just-test/issues", "email": "gullerya@gmail.com" }, "type": "module", "files": [ "bin" ], "exports": { ".": "./bin/runner/just-test.js", "./assert": "./bin/common/assert-utils.js", "./random": "./bin/common/random-utils.js", "./timing": "./bin/common/time-utils.js" }, "scripts": { "build": "node ./ci/tools/build.js", "lint": "npm run lint:runner && npm run lint:server", "lint:runner": "eslint -c ./ci/.eslintrc.runner.json \"./src/runner/**/*.js\" \"./src/common/**/*.js\" \"./src/ui/**/*.js\" \"./tests/**/*.js\"", "lint:server": "eslint -c ./ci/.eslintrc.server.json \"./src/common/**/*.js\" \"./src/server/**/*.js\" \"./src/*.js\" \"./ci/**/*.js\" \"./tests/**/*.js\"", "test:dev": "npm run build && node ./bin/local-runner.js config_file=./tests/tests-config-dev.json", "test:ci:chromium": "node ./bin/local-runner.js config_file=./tests/tests-config-ci-chromium.json", "test:ci:firefox": "node ./bin/local-runner.js config_file=./tests/tests-config-ci-firefox.json", "test:ci:webkit": "node ./bin/local-runner.js config_file=./tests/tests-config-ci-webkit.json", "test:ci:nodejs": "node ./bin/local-runner.js config_file=./tests/tests-config-ci-nodejs.json" }, "dependencies": { "data-tier": "^3.6.6", "data-tier-list": "^2.2.1", "es-module-shims": "^1.7.0", "glob": "^9.3.2", "minimatch": "^7.4.3", "playwright": "^1.32.0", "rich-component": "^1.8.0" }, "devDependencies": { "@gullerya/just-test": "^4.0.4", "eslint": "^8.36.0" }, "publishConfig": { "access": "public" } }