bakerface/take-action

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "take-action",
  "version": "3.2.2",
  "description": "A fast, unopinionated, minimalist action framework for JavaScript.",
  "author": "Chris Baker <mail.chris.baker@gmail.com>",
  "license": "MIT",
  "main": "index.js",
  "contributors": [
    {
      "name": "Chris Baker",
      "email": "mail.chris.baker@gmail.com"
    }
  ],
  "devDependencies": {
    "codeclimate-test-reporter": "^0.3.3",
    "mocha": "^3.1.0",
    "nyc": "^8.3.0",
    "xo": "^0.16.0"
  },
  "nyc": {
    "branches": 100,
    "functions": 100,
    "lines": 100,
    "statements": 100,
    "reporter": [
      "lcov",
      "text-summary"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:bakerface/take-action.git"
  },
  "scripts": {
    "codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
    "test": "xo && nyc --check-coverage _mocha"
  },
  "xo": {
    "envs": [
      "mocha",
      "node"
    ],
    "space": 2,
    "rules": {
      "babel/array-bracket-spacing": [
        "error",
        "always"
      ],
      "babel/object-curly-spacing": [
        "error",
        "always"
      ],
      "brace-style": [
        "error",
        "stroustrup"
      ],
      "no-extend-native": [
        "off"
      ]
    }
  }
}