123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- {
- "name": "xo",
- "version": "0.21.1",
- "description": "JavaScript happiness style linter ❤️",
- "license": "MIT",
- "repository": "xojs/xo",
- "author": {
- "name": "Sindre Sorhus",
- "email": "sindresorhus@gmail.com",
- "url": "sindresorhus.com"
- },
- "bin": "cli.js",
- "engines": {
- "node": ">=6"
- },
- "scripts": {
- "test": "node main.js && eslint . && nyc ava",
- "coveralls": "nyc report --reporter=text-lcov | coveralls"
- },
- "files": [
- "config",
- "lib",
- "*.js"
- ],
- "keywords": [
- "❤️",
- "cli-app",
- "cli",
- "xo",
- "xoxo",
- "happy",
- "happiness",
- "code",
- "quality",
- "style",
- "lint",
- "linter",
- "jscs",
- "jshint",
- "jslint",
- "eslint",
- "validate",
- "code style",
- "standard",
- "strict",
- "check",
- "checker",
- "verify",
- "enforce",
- "hint",
- "simple"
- ],
- "dependencies": {
- "arrify": "^1.0.1",
- "debug": "^3.1.0",
- "eslint": "^4.19.1",
- "eslint-config-prettier": "^2.9.0",
- "eslint-config-xo": "^0.22.0",
- "eslint-formatter-pretty": "^1.3.0",
- "eslint-plugin-ava": "^4.5.0",
- "eslint-plugin-import": "^2.11.0",
- "eslint-plugin-no-use-extend-native": "^0.3.12",
- "eslint-plugin-node": "^6.0.0",
- "eslint-plugin-prettier": "^2.6.0",
- "eslint-plugin-promise": "^3.7.0",
- "eslint-plugin-unicorn": "^4.0.3",
- "get-stdin": "^6.0.0",
- "globby": "^8.0.0",
- "has-flag": "^3.0.0",
- "lodash.isequal": "^4.5.0",
- "lodash.mergewith": "^4.6.1",
- "meow": "^5.0.0",
- "multimatch": "^2.1.0",
- "open-editor": "^1.2.0",
- "path-exists": "^3.0.0",
- "pkg-conf": "^2.1.0",
- "prettier": "^1.12.1",
- "resolve-cwd": "^2.0.0",
- "resolve-from": "^4.0.0",
- "semver": "^5.5.0",
- "slash": "^2.0.0",
- "update-notifier": "^2.3.0",
- "xo-init": "^0.7.0"
- },
- "devDependencies": {
- "ava": "*",
- "coveralls": "^3.0.0",
- "eslint-config-xo-react": "^0.16.0",
- "eslint-plugin-react": "^7.6.1",
- "execa": "^0.10.0",
- "nyc": "^11.4.1",
- "pify": "^3.0.0",
- "proxyquire": "^2.0.1",
- "temp-write": "^3.4.0"
- },
- "eslintConfig": {
- "extends": "eslint-config-xo"
- },
- "eslintIgnore": [
- "test/fixtures"
- ]
- }
|