UNPKG

qunit

Version:

The powerful, easy-to-use testing framework.

118 lines (117 loc) 3.61 kB
{ "name": "qunit", "title": "QUnit", "description": "The powerful, easy-to-use testing framework.", "version": "2.25.0", "homepage": "https://qunitjs.com", "author": { "name": "OpenJS Foundation and other contributors", "url": "https://github.com/qunitjs/qunit/blob/main/AUTHORS.txt" }, "repository": { "type": "git", "url": "git://github.com/qunitjs/qunit.git" }, "keywords": [ "testing", "unit", "assert", "assertion", "tap", "tape", "karma", "jquery" ], "bugs": { "url": "https://github.com/qunitjs/qunit/issues" }, "license": "MIT", "bin": { "qunit": "bin/qunit.js" }, "files": [ "bin/", "src/cli/", "qunit/qunit.js", "qunit/qunit.css", "LICENSE.txt" ], "main": "qunit/qunit.js", "engines": { "node": ">=10" }, "dependencies": { "commander": "7.2.0", "node-watch": "0.7.3", "tiny-glob": "0.2.9" }, "devDependencies": { "@babel/core": "^7.28.5", "@babel/plugin-external-helpers": "^7.27.1", "@babel/preset-env": "^7.28.5", "@qunitjs/browserstack-runner": "0.9.5-qunitjs.2", "@rollup/plugin-babel": "^5.3.1", "@rollup/plugin-commonjs": "^21.1.0", "@rollup/plugin-node-resolve": "^14.1.0", "@rollup/plugin-replace": "^4.0.0", "benchmark": "2.1.4", "eslint": "7.32.0", "eslint-config-semistandard": "^16.0.0", "eslint-config-standard": "^16.0.3", "eslint-plugin-compat": "^4.1.1", "eslint-plugin-html": "^6.2.0", "eslint-plugin-import": "^2.32.0", "eslint-plugin-json-es": "^1.6.0", "eslint-plugin-markdown": "^2.2.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.2.0", "eslint-plugin-qunit": "^6.2.0", "fixturify": "^2.1.1", "fuzzysort": "1.2.1", "grunt": "^1.5.3", "grunt-contrib-connect": "^3.0.0", "grunt-contrib-copy": "^1.0.0", "grunt-contrib-qunit": "^5.1.1", "grunt-search": "^0.1.8", "kleur": "4.1.5", "npm-reporter": "file:./test/cli/fixtures/npm-reporter", "nyc": "^15.1.0", "proxyquire": "^1.8.0", "requirejs": "^2.3.7", "rimraf": "^3.0.2", "rollup": "^2.79.2", "semver": "^7.7.3", "tap-parser": "11.0.2" }, "scripts": { "build": "rollup -c && grunt copy:src-css", "build-coverage": "rollup -c --environment BUILD_TARGET:coverage && grunt copy:src-css", "build-dev": "node build/watch.js", "benchmark": "npm install --silent --no-audit --prefix test/benchmark/ && node test/benchmark/index-node.js", "lint": "eslint --cache .", "lint-fix": "eslint --cache --fix .", "test-main": "grunt test", "test-cli": "node bin/qunit.js test/main/ test/cli/*.js", "test": "npm run lint && npm run build && npm run test-main && npm run test-cli", "test-nolint": "npm run build && npm run test-main && npm run test-cli", "test-integration": "npm run build && node bin/qunit.js test/integration/*.js", "browserstack": "browserstack-runner -v", "authors": "(echo 'Authors ordered by first contribution\n' && git log --format='%aN <%aE>' --no-merges --reverse | awk '!seen[$0]++') | tee AUTHORS.txt", "coverage": "npm run build-coverage && npm run coverage-cli && npm run coverage-main && nyc report", "coverage-cli": "nyc --use-spawn-wrap --silent bin/qunit.js test/cli/*.js", "coverage-main": "nyc instrument --in-place qunit/ && grunt connect:base qunit" }, "nyc": { "include": [ "bin/**", "qunit/**", "src/**" ], "reporter": [ "text", "html", "clover" ], "report-dir": "coverage" } }