Initial Save

This commit is contained in:
jackbeeby
2025-03-28 12:30:19 +11:00
parent e381994f19
commit d8773925e8
9910 changed files with 982718 additions and 0 deletions

23
node_modules/zen-observable/package.json generated vendored Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "zen-observable",
"version": "0.8.15",
"repository": "zenparsing/zen-observable",
"description": "An Implementation of ES Observables",
"homepage": "https://github.com/zenparsing/zen-observable",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/register": "^7.6.0",
"eslint": "^6.5.0",
"mocha": "^6.2.0"
},
"dependencies": {},
"scripts": {
"test": "mocha --recursive --require ./scripts/mocha-require",
"lint": "eslint src/*",
"build": "git clean -dfX ./lib && node ./scripts/build",
"prepublishOnly": "npm run lint && npm test && npm run build"
}
}