- Add GETTING_STARTED.md with quick start guide and development modes - Add INSTALL.sh automated installation script - Add INSTALLATION_CHECKLIST.md, INSTALLATION_SUCCESS.md, and INSTALLATION_SUMMARY.md - Add QUICK_REFERENCE.md for common commands - Add SETUP_GUIDE.md with detailed setup instructions - Update README.md with improved project overview - Add did-wallet app dependencies and node_modules
39 lines
880 B
JSON
39 lines
880 B
JSON
{
|
|
"name": "catering",
|
|
"version": "2.1.1",
|
|
"description": "Simple utility to allow your module to be consumed with a callback or promise",
|
|
"license": "MIT",
|
|
"author": "Vincent Weevers",
|
|
"scripts": {
|
|
"test": "standard && node test.js",
|
|
"test-browsers-local": "airtap test.js"
|
|
},
|
|
"types": "index.d.ts",
|
|
"files": [
|
|
"index.js",
|
|
"index.d.ts",
|
|
"next-tick.js",
|
|
"next-tick-browser.js"
|
|
],
|
|
"browser": {
|
|
"./next-tick.js": "./next-tick-browser.js"
|
|
},
|
|
"devDependencies": {
|
|
"airtap": "^4.0.4",
|
|
"airtap-playwright": "^1.0.1",
|
|
"standard": "^16.0.4",
|
|
"tape": "^5.4.0"
|
|
},
|
|
"keywords": [
|
|
"callback",
|
|
"promise",
|
|
"promisify"
|
|
],
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"repository": "vweevers/catering",
|
|
"bugs": "https://github.com/vweevers/catering/issues",
|
|
"homepage": "https://github.com/vweevers/catering"
|
|
}
|