UNPKG

qunit

Version:

The powerful, easy-to-use testing framework.

115 lines (114 loc) 3.14 kB
{ "name": "qunit", "title": "QUnit", "description": "The powerful, easy-to-use testing framework.", "version": "2.13.0", "homepage": "https://qunitjs.com", "author": { "name": "OpenJS Foundation and other contributors", "url": "https://github.com/qunitjs/qunit/blob/2.13.0/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": "6.2.0", "js-reporters": "1.2.3", "node-watch": "0.7.0", "tiny-glob": "0.2.6" }, "devDependencies": { "@babel/core": "^7.11.1", "@babel/plugin-external-helpers": "^7.10.4", "@babel/preset-env": "^7.11.0", "coveralls": "^3.1.0", "es6-promise": "^4.2.5", "eslint-config-jquery": "^1.0.1", "eslint-plugin-html": "^6.0.3", "eslint-plugin-node": "^8.0.1", "eslint-plugin-qunit": "^3.2.0", "execa": "^0.8.0", "fixturify": "^0.3.4", "fuzzysort": "^1.1.4", "grunt": "^1.0.4", "grunt-cli": "^1.2.0", "grunt-contrib-connect": "^1.0.2", "grunt-contrib-copy": "^1.0.0", "grunt-contrib-qunit": "^3.1.0", "grunt-contrib-watch": "^1.1.0", "grunt-eslint": "^23.0.0", "grunt-git-authors": "^3.2.0", "rollup": "^2.30.0", "grunt-search": "^0.1.8", "npm-reporter": "file:./test/cli/fixtures/npm-reporter", "nyc": "^15.1.0", "proxyquire": "^1.8.0", "requirejs": "^2.3.5", "rimraf": "^2.7.1", "@rollup/plugin-babel": "^5.2.0", "@rollup/plugin-commonjs": "^16.0.0", "@rollup/plugin-node-resolve": "^10.0.0", "@rollup/plugin-replace": "^2.3.3", "semver": "^5.4.1", "tiny-lr": "^1.1.1" }, "scripts": { "build": "rollup -c && grunt copy:src-css", "build:coverage": "rollup -c --environment BUILD_TARGET:coverage && grunt copy:src-css", "dev": "grunt watch", "test": "npm run build && grunt test && bin/qunit.js test/cli/*.js", "test:lint": "grunt eslint", "test:main": "npm run build && grunt test", "test:cli": "npm run build && bin/qunit.js test/cli/*.js", "authors": "grunt authors", "serve": "grunt connect:any", "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 dist/ && grunt connect:nolivereload qunit", "coveralls": "npm run coverage && cat coverage/lcov.info | coveralls" }, "nyc": { "include": [ "bin/**", "dist/**", "reporter/**", "runner/**", "src/**" ], "reporter": [ "text", "html", "lcovonly" ], "report-dir": "coverage" } }