wilmoore/unary.js

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "unary",
  "description": "Creates a unary function wrapper which extracts a specific argument by index and applies the argument to the original unary function.",
  "version": "0.0.2",
  "author": "Wil Moore III <wil.moore@wilmoore.com>",
  "bugs": {
    "url": "https://github.com/wilmoore/unary.js/issues"
  },
  "dependencies": {
    "curry2": "^0.1.0"
  },
  "devDependencies": {
    "nodemon": "^1.3.7",
    "standard": "^3.7.2",
    "tap-spec": "^2.2.2",
    "tape": "^4.0.0",
    "tape-catch": "^1.0.4"
  },
  "files": [
    "index.js",
    "license",
    "package.json",
    "readme.md"
  ],
  "homepage": "https://github.com/wilmoore/unary.js",
  "keywords": [
    "apply",
    "curried",
    "curry",
    "arguments",
    "partial",
    "partialapplication",
    "pointfree",
    "unary",
    "variadic"
  ],
  "license": "MIT",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/wilmoore/unary.js"
  },
  "scripts": {
    "cover": "istanbul cover test.js",
    "dev": "nodemon -x 'npm run test --silent' -e 'js json'",
    "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 standard --silent && node test.js | tap-spec"
  }
}