wilmoore/array-concat.js

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "array-concat",
  "description": "Returns a new array comprised of the given array's contents with the given value appended.",
  "version": "0.1.1",
  "author": "Wil Moore III <wil.moore@wilmoore.com>",
  "bugs": {
    "url": "https://github.com/wilmoore/array-concat.js/issues"
  },
  "dependencies": {
    "curry2": "^0.1.0"
  },
  "devDependencies": {
    "fixpack": "^2.2.0",
    "dependency-check": "^2.4.0",
    "istanbul": "^0.3.13",
    "nodemon": "^1.3.7",
    "standard": "^3.7.1",
    "tap-spec": "^2.2.2",
    "tape": "^4.0.0",
    "tape-catch": "^1.0.4"
  },
  "homepage": "https://github.com/wilmoore/array-concat.js",
  "keywords": [
    "array",
    "auto-curried",
    "concat",
    "copy",
    "pointfree",
    "point-free",
    "R.concat",
    "shallow"
  ],
  "license": "MIT",
  "main": "index.js",
  "preferGlobal": false,
  "private": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/wilmoore/array-concat.js"
  },
  "scripts": {
    "cover": "istanbul cover test.js",
    "dependency-check": "dependency-check ./package.json && dependency-check ./package.json --unused --no-dev",
    "dev": "nodemon -x 'npm run test --silent' -e 'js json'",
    "fixpack": "fixpack",
    "release-major": "npm version major && git push --follow-tags && npm publish",
    "release-minor": "npm version minor && git push --follow-tags && npm publish",
    "release-patch": "npm version patch && git push --follow-tags && npm publish",
    "standard": "standard",
    "test": "npm run dependency-check && npm run standard --silent && node test.js | tap-spec"
  }
}