dustinspecker/array-join-conjunction

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "array-join-conjunction",
  "version": "1.0.0",
  "description": "Join an array with a conjunction",
  "main": "lib/index.js",
  "scripts": {
    "compile": "babel src --out-dir lib",
    "coveralls": "nyc report --reporter=text-lcov | coveralls",
    "lint": "eslint ./ --ignore-pattern node_modules/ --ignore-pattern lib",
    "test": "npm run lint && npm run compile && nyc ava"
  },
  "repository": "dustinspecker/array-join-conjunction",
  "keywords": [
    "array",
    "join",
    "conjunction"
  ],
  "author": "Dustin Specker <DustinSpecker@DustinSpecker.com> (http://dustinspecker.com/)",
  "license": "MIT",
  "files": [
    "lib"
  ],
  "devDependencies": {
    "ava": "^0.16.0",
    "babel-cli": "^6.4.0",
    "babel-preset-es2015": "^6.3.13",
    "babel-register": "^6.4.3",
    "coveralls": "^2.11.6",
    "eslint": "^3.9.0",
    "eslint-config-dustinspecker": "^1.1.0",
    "eslint-plugin-no-use-extend-native": "^0.3.4",
    "eslint-plugin-xo": "^1.0.0",
    "nyc": "^8.4.0"
  },
  "ava": {
    "files": [
      "tests/test.js"
    ],
    "require": [
      "babel-register"
    ]
  },
  "nyc": {
    "exclude": [
      "node_modules",
      "tests"
    ]
  }
}