Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
eslint-plugin-qunit
/
Filename :
package.json
back
Copy
{ "name": "eslint-plugin-qunit", "version": "4.3.0", "description": "ESLint plugin containing rules useful for QUnit tests.", "main": "index.js", "scripts": { "test": "npm run lint && npm run unit-test", "lint": "eslint ./ --report-unused-disable-directives", "unit-test": "nyc mocha tests/**/*.js", "report-coverage-html": "nyc report --reporter=html --report-dir build/coverage", "preversion": "npm test", "version": "node build/generate-release-changelog.js" }, "files": [ "index.js", "lib/" ], "devDependencies": { "all-contributors-cli": "^6.14.2", "chai": "^4.2.0", "coveralls": "^3.0.8", "eslint": "^5.16.0", "eslint-plugin-eslint-plugin": "^2.2.1", "eslint-plugin-node": "^7.0.1", "mocha": "^5.2.0", "mocha-lcov-reporter": "^1.3.0", "nyc": "^13.3.0", "outdent": "^0.7.1", "semver": "^5.7.1", "shelljs": "^0.8.3" }, "peerDepencencies": { "eslint": ">=4.15.0 <6.0.0" }, "repository": { "type": "git", "url": "https://github.com/platinumazure/eslint-plugin-qunit.git" }, "keywords": [ "eslint", "eslintplugin" ], "nyc": { "check-coverage": true, "lines": 100, "statements": 100, "functions": 100, "branches": 100, "exclude": [ "build/**", "tests/**" ], "reporter": [ "lcovonly" ], "all": true, "report-dir": "./build/coverage" }, "author": "Kevin Partington <kevin@kernelpanicstudios.com>", "license": "MIT", "bugs": { "url": "https://github.com/platinumazure/eslint-plugin-qunit/issues" }, "homepage": "https://github.com/platinumazure/eslint-plugin-qunit", "engines": { "node": "6.x || 8.x || >=10.0.0" } }