CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
package.json35 linesDownload Raw Back to thenify-all
1{2  "name": "thenify-all",3  "description": "Promisifies all the selected functions in an object",4  "version": "1.6.0",5  "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",6  "license": "MIT",7  "repository": "thenables/thenify-all",8  "dependencies": {9    "thenify": ">= 3.1.0 < 4"10  },11  "devDependencies": {12    "bluebird": "2",13    "istanbul": "0",14    "mocha": "2"15  },16  "scripts": {17    "test": "mocha --reporter spec",18    "test-cov": "istanbul cover node_modules/.bin/_mocha -- --reporter dot",19    "test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter dot"20  },21  "keywords": [22    "promisify",23    "promise",24    "thenify",25    "then",26    "es6"27  ],28  "files": [29    "index.js"30  ],31  "engines": {32    "node": ">=0.8"33  }34}35