Initial import with skill sheet working

This commit is contained in:
2024-12-04 00:11:23 +01:00
commit 9050c80ab4
4488 changed files with 671048 additions and 0 deletions

38
node_modules/catering/package.json generated vendored Normal file
View File

@@ -0,0 +1,38 @@
{
"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"
}