UNPKG

just-test

Version:
66 lines (65 loc) 2.06 kB
{ "name": "just-test", "version": "3.0.4", "description": "JavaScript tests runner", "keywords": [ "javascript", "testing", "framework", "test", "tests", "coverage", "lcov", "test", "report", "results", "xUnit" ], "homepage": "https://github.com/gullerya/just-test", "bugs": { "url": "https://github.com/gullerya/just-test/issues", "email": "gullerya@gmail.com" }, "license": "MIT", "files": [ "bin" ], "type": "module", "exports": { "./suite": "./bin/runner/just-test.js", "./random-utils": "./bin/common/random-utils.js", "./time-utils": "./bin/common/time-utils.js" }, "author": { "name": "Guller Yuri", "email": "gullerya@gmail.com" }, "funding": "https://paypal.me/gullerya?locale.x=en_US", "repository": { "type": "git", "url": "https://github.com/gullerya/just-test" }, "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/runner/**/*.js\"", "lint:server": "eslint -c ./ci/.eslintrc.server.json \"./src/common/**/*.js\" \"./src/server/**/*.js\" \"./src/*.js\" \"./ci/**/*.js\" \"./tests/server/**/*.js\"", "test:dev": "node ./src/local-runner.js config_file=./tests/tests-config-dev.json", "test:ci": "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:node": "node ./bin/local-runner.js config_file=./tests/tests-config-ci-node.json" }, "dependencies": { "data-tier": "^3.6.1", "data-tier-list": "^2.2.1", "es-module-shims": "^1.5.8", "glob": "^8.0.3", "playwright": "^1.22.2", "rich-component": "^1.8.0" }, "devDependencies": { "chai": "^4.3.6", "eslint": "^8.18.0" } }