UNPKG

kudo

Version:

check someone's code quality in git repository

64 lines (63 loc) 1.53 kB
{ "name": "kudo", "version": "1.0.1", "description": "check someone's code quality in git repository", "main": "lib/cli.js", "bin": { "kudo": "./bin/kudo" }, "dependencies": { "chalk": "^1.1.1", "minimist": "^1.1.0", "through2": "^2.0.0", "tty-table": "^1.0.6" }, "peerDependencies": { "fecs": "^0.4.5", "babel": "^5.8.21" }, "devDependencies": { "babel-runtime": "^5.8.20", "coveralls": "^2.11.2", "istanbul": "^0.3.2", "jasmine-node": "^1.14.5" }, "babel": { "stage": 2, "modules": "common", "compact": false, "ast": false, "sourceMaps": "inline", "optional": [ "runtime" ], "auxiliaryCommentBefore": "istanbul ignore next" }, "scripts": { "lint": "fecs lib test/**/*.spec.js --type=js", "babel": "babel ./lib -d dist/lib && babel ./test -d dist/test", "coverage": "istanbul cover jasmine-node --report text --captureExceptions dist/test/**/*.spec.js", "test": "npm run lint && npm run babel && npm run coverage && rm -rf dist", "coveralls": "cat ./coverage/lcov.info | coveralls" }, "repository": { "type": "git", "url": "https://github.com/ecomfe/kudo.git" }, "keywords": [ "diff", "git", "lint", "fecs" ], "author": { "name": "chris", "email": "wfsr@foxmail.com", "url": "https://github.com/chriswong" }, "license": "MIT", "bugs": { "url": "https://github.com/ecomfe/kudo/issues" }, "homepage": "https://github.com/ecomfe/kudo" }