UNPKG

lint-filter

Version:
77 lines (76 loc) 1.86 kB
{ "name": "lint-filter", "version": "1.7.3", "description": "Lint touched code stricter", "main": "./lib", "bin": "./lint-filter.js", "scripts": { "prepublish": "babel src -d lib", "test": "nyc -a --require babel-core/register ava", "lint": "eslint .", "flow": "flow check", "coverage": "nyc -a --require babel-core/register --reporter cobertura ava --verbose", "integration-test": "bash integration-test" }, "repository": { "type": "git", "url": "git+https://github.com/relekang/lint-filter.git" }, "keywords": [ "lint" ], "author": "Rolf Erik Lekang <me@rolflekang.com>", "license": "MIT", "bugs": { "url": "https://github.com/relekang/lint-filter/issues" }, "homepage": "https://github.com/relekang/lint-filter#readme", "ava": { "files": [ "test/formatters/*.js", "test/utils/*.js", "test/*.js" ], "babel": "inherit", "require": [ "babel-register", "babel-polyfill" ] }, "nyc": { "include": [ "src/**" ], "exclude": [ "flow-typed/**", "test/**" ] }, "dependencies": { "babel-polyfill": "^6.26.0", "bluebird": "^3.4.6", "chalk": "^1.1.3", "checkstyle-formatter": "^1.1.0", "commander": "^2.9.0", "get-stdin": "^5.0.1", "in-range": "^1.0.0", "lodash": "^4.17.14", "xml2js": "^0.4.17" }, "devDependencies": { "ava": "^0.16.0", "babel": "^6.23.0", "babel-cli": "^6.26.0", "babel-core": "^6.26.3", "babel-eslint": "^10.0.2", "babel-plugin-transform-flow-strip-types": "^6.22.0", "babel-preset-latest": "^6.24.1", "eslint": "^6.0.1", "eslint-config-airbnb-base": "^13.2.0", "eslint-plugin-import": "^2.18.0", "flow-bin": "^0.32.0", "nyc": "^14.1.1", "sinon": "^1.17.6", "standard-version": "^6.0.1" } }