package.json
 1  {
 2    "name": "universalify",
 3    "version": "2.0.0",
 4    "description": "Make a callback- or promise-based function support both promises and callbacks.",
 5    "keywords": [
 6      "callback",
 7      "native",
 8      "promise"
 9    ],
10    "homepage": "https://github.com/RyanZim/universalify#readme",
11    "bugs": "https://github.com/RyanZim/universalify/issues",
12    "license": "MIT",
13    "author": "Ryan Zimmerman <opensrc@ryanzim.com>",
14    "files": [
15      "index.js"
16    ],
17    "repository": {
18      "type": "git",
19      "url": "git+https://github.com/RyanZim/universalify.git"
20    },
21    "scripts": {
22      "test": "standard && nyc tape test/*.js | colortape"
23    },
24    "devDependencies": {
25      "colortape": "^0.1.2",
26      "coveralls": "^3.0.1",
27      "nyc": "^15.0.0",
28      "standard": "^14.3.1",
29      "tape": "^5.0.1"
30    },
31    "engines": {
32      "node": ">= 10.0.0"
33    }
34  }