UNPKG

product

Version:

Curried calculation of the product of multiplying multiplicand and multiplier.

57 lines (56 loc) 1.46 kB
{ "name": "product", "description": "Curried calculation of the product of multiplying multiplicand and multiplier.", "version": "1.2.2", "author": "Wil Moore III <wil.moore@wilmoore.com>", "bugs": { "url": "https://github.com/wilmoore/product.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/product.js", "keywords": [ "arithmetic", "arithmetics", "curried", "curry", "factor", "math", "partial", "partialapplication", "product", "multiply", "multiplication", "multiplicand", "multiplier" ], "license": "MIT", "main": "index.js", "repository": { "type": "git", "url": "https://github.com/wilmoore/product.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" } }