UNPKG

tslint-no-focused-test

Version:
38 lines (37 loc) 1.15 kB
{ "name": "tslint-no-focused-test", "version": "0.5.0", "description": "Custom TSLint plugin to check for focused tests", "main": "dist/index.js", "repository": "git@github.com:jasonmendes/tslint-no-focused-test.git", "author": "Jason Mendes <jason@honua.co>", "license": "MIT", "private": false, "scripts": { "prepublishOnly": "npm run lint && npm run build && npm run test", "build": "tsc", "tslint:fix": "tslint -c tslint.json 'src/**/*.ts' --fix", "tslint:check": "tslint -c tslint.json 'src/**/*.ts'", "prettier:fix": "prettier --config prettier.config.js --write 'src/**/*ts'", "prettier:check": "prettier --config prettier.config.js --list-different 'src/**/*ts'", "lint": "npm run tslint:check && npm run prettier:check", "fix": "npm run tslint:fix && npm run prettier:fix", "test": "tslint --test test" }, "keywords": [ "jest", "tslint", "typescript", "mocha", "chai" ], "peerDependencies": { "tslint": ">=5.0.0" }, "devDependencies": { "@types/node": "^10.0.5", "prettier": "^1.12.1", "tslint": "^5.10.0", "typescript": "^2.8.3" } }