UNPKG

yarn-check

Version:

Check for outdated, incorrect, and unused dependencies.

101 lines (100 loc) 2.17 kB
{ "name": "yarn-check", "version": "0.0.3", "description": "Check for outdated, incorrect, and unused dependencies.", "main": "lib", "engines": { "node": ">=0.11.0" }, "types": "./index.d.ts", "typings": "./index.d.ts", "scripts": { "lint": "xo ./lib/*.js", "test": "npm run lint && ./bin/cli.js || echo Exit Status: $?.", "transpile": "babel lib --out-dir lib-es5", "watch": "babel lib --out-dir lib-es5 --watch", "prepublish": "npm run transpile" }, "xo": { "space": 4, "rules": { "no-warning-comments": [ 0 ], "global-require": [ 0 ] } }, "bin": { "yarn-check": "bin/cli.js" }, "repository": { "type": "git", "url": "https://github.com/yhnavein/yarn-check.git" }, "keywords": [ "npm", "outdated", "dependencies", "unused", "changelog", "check", "updates", "api", "interactive", "cli", "safe", "updating", "updater", "installer", "devDependencies" ], "author": { "name": "Dylan Greene", "email": "dylang@gmail.com" }, "license": "MIT", "bugs": { "url": "https://github.com/yhnavein/yarn-check/issues" }, "homepage": "https://github.com/yhnavein/yarn-check", "files": [ "bin", "lib", "lib-es5" ], "dependencies": { "babel-runtime": "^6.6.1", "callsite-record": "^3.0.0", "chalk": "^1.1.3", "co": "^4.6.0", "depcheck": "^0.6.3", "execa": "^0.2.2", "giturl": "^1.0.0", "global-modules": "^1.0.0", "globby": "^4.0.0", "inquirer": "^0.12.0", "is-ci": "^1.0.8", "lodash": "^4.7.0", "meow": "^3.7.0", "merge-options": "0.0.64", "minimatch": "^3.0.2", "node-emoji": "^1.0.3", "ora": "^0.2.1", "package-json": "^4.0.1", "path-exists": "^2.1.0", "pkg-dir": "^1.0.0", "semver": "^5.0.1", "semver-diff": "^2.0.0", "text-table": "^0.2.0", "throat": "^2.0.2", "update-notifier": "^2.1.0" }, "devDependencies": { "babel-cli": "^6.6.5", "babel-plugin-transform-runtime": "^6.6.0", "babel-preset-es2015": "^6.6.0", "xo": "^0.13.0" } }