CoolFace
Apppublic

strong-tie/inbound-calls

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
package.json46 linesDownload Raw Back to reusify
1{2  "name": "reusify",3  "version": "1.0.4",4  "description": "Reuse objects and functions with style",5  "main": "reusify.js",6  "scripts": {7    "lint": "standard",8    "test": "tape test.js | faucet",9    "istanbul": "istanbul cover tape test.js",10    "coverage": "npm run istanbul; cat coverage/lcov.info | coveralls"11  },12  "pre-commit": [13    "lint",14    "test"15  ],16  "repository": {17    "type": "git",18    "url": "git+https://github.com/mcollina/reusify.git"19  },20  "keywords": [21    "reuse",22    "object",23    "performance",24    "function",25    "fast"26  ],27  "author": "Matteo Collina <hello@matteocollina.com>",28  "license": "MIT",29  "bugs": {30    "url": "https://github.com/mcollina/reusify/issues"31  },32  "homepage": "https://github.com/mcollina/reusify#readme",33  "engines": {34    "node": ">=0.10.0",35    "iojs": ">=1.0.0"36  },37  "devDependencies": {38    "coveralls": "^2.13.3",39    "faucet": "0.0.1",40    "istanbul": "^0.4.5",41    "pre-commit": "^1.2.2",42    "standard": "^10.0.3",43    "tape": "^4.8.0"44  }45}46