Project files
This commit is contained in:
21
receipeServer/frontend_old/node_modules/optimism/LICENSE
generated
vendored
Normal file
21
receipeServer/frontend_old/node_modules/optimism/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2016 Ben Newman
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
3
receipeServer/frontend_old/node_modules/optimism/README.md
generated
vendored
Normal file
3
receipeServer/frontend_old/node_modules/optimism/README.md
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
# optimism [](https://travis-ci.org/benjamn/optimism) [](https://greenkeeper.io/)
|
||||
|
||||
Composable reactive caching with efficient invalidation.
|
||||
52
receipeServer/frontend_old/node_modules/optimism/package.json
generated
vendored
Normal file
52
receipeServer/frontend_old/node_modules/optimism/package.json
generated
vendored
Normal file
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"name": "optimism",
|
||||
"version": "0.10.3",
|
||||
"author": "Ben Newman <ben@benjamn.com>",
|
||||
"description": "Composable reactive caching with efficient invalidation.",
|
||||
"keywords": [
|
||||
"caching",
|
||||
"cache",
|
||||
"invalidation",
|
||||
"reactive",
|
||||
"reactivity",
|
||||
"dependency",
|
||||
"tracking",
|
||||
"tracker",
|
||||
"memoization"
|
||||
],
|
||||
"main": "lib/bundle.cjs.js",
|
||||
"module": "lib/bundle.esm.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/benjamn/optimism#readme",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/benjamn/optimism.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/benjamn/optimism/issues"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run clean && tsc --emitDeclarationOnly && rollup -c",
|
||||
"clean": "rimraf lib",
|
||||
"mocha": "mocha --require source-map-support/register --reporter spec --full-trace test.js",
|
||||
"prepublish": "npm run build",
|
||||
"test": "npm run build && npm run mocha"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/mocha": "5.2.7",
|
||||
"@types/node": "12.7.5",
|
||||
"fibers": "4.0.1",
|
||||
"mocha": "6.2.0",
|
||||
"reify": "0.20.12",
|
||||
"rimraf": "3.0.0",
|
||||
"rollup": "1.21.2",
|
||||
"rollup-plugin-typescript2": "0.24.2",
|
||||
"source-map-support": "0.5.13",
|
||||
"tslib": "1.10.0",
|
||||
"typescript": "3.5.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@wry/context": "^0.4.0"
|
||||
}
|
||||
}
|
||||
8
receipeServer/frontend_old/node_modules/optimism/test.js
generated
vendored
Normal file
8
receipeServer/frontend_old/node_modules/optimism/test.js
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
describe("Compiled to CommonJS", function () {
|
||||
require("./lib/tests/bundle.cjs.js");
|
||||
});
|
||||
|
||||
describe("Compiled to ECMAScript module syntax", function () {
|
||||
require("reify/node"); // Enable ESM syntax.
|
||||
require("./lib/tests/bundle.esm.js");
|
||||
});
|
||||
Reference in New Issue
Block a user