cantidio/node-github-pages

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "github-pages",
  "version": "3.0.2",
  "description": "Publishes your github pages using the github API",
  "main": "build/lib/index.js",
  "bin": {
    "github-pages": "./build/bin/github-pages.js"
  },
  "scripts": {
    "clean": "rimraf build coverage",
    "build": "npm run clean && babel ./src -d build",
    "lint": "eslint src tests && jscs src tests",
    "start": "node --harmony --harmony_destructuring ./src/bin/github-pages",
    "test": "npm run lint && nyc ava",
    "deploy:coverage": "codeclimate-test-reporter < .coverage/lcov.info",
    "prepublish": "npm run build"
  },
  "ava": {
    "files": [
      "tests/"
    ],
    "require": [
      "babel-register"
    ],
    "babel": "inherit"
  },
  "nyc": {
    "all": true,
    "include": [
      "src/"
    ],
    "exclude": [
      "src/bin"
    ],
    "reporter": [
      "text",
      "lcov"
    ],
    "lines": 90,
    "function": 90,
    "branches": 90,
    "check-coverage": false,
    "report-dir": ".coverage",
    "require": [
      "babel-register"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cantidio/node-github-pages.git"
  },
  "keywords": [
    "git",
    "github",
    "gh-pages",
    "pages",
    "ci"
  ],
  "author": "Cantidio Fontes <aniquilatorbloody@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/cantidio/node-github-pages/issues"
  },
  "homepage": "https://github.com/cantidio/node-github-pages#readme",
  "dependencies": {
    "github": "^0.2.4",
    "ls-all": "^1.1.0",
    "meow": "^3.7.0",
    "pkg-conf": "^1.1.1"
  },
  "devDependencies": {
    "ava": "^0.13.0",
    "babel-cli": "^6.6.5",
    "babel-eslint": "^5.0.0",
    "babel-plugin-transform-es2015-destructuring": "^6.6.5",
    "babel-plugin-transform-object-assign": "^6.5.0",
    "codeclimate-test-reporter": "^0.3.1",
    "eslint": "^2.4.0",
    "eslint-plugin-babel": "^3.1.0",
    "estraverse-fb": "^1.3.1",
    "jscs": "^2.11.0",
    "nyc": "^6.1.1",
    "rimraf": "^2.5.2"
  }
}