Initial commit: 11ty website with Fire/Frost branding

This commit is contained in:
The Trinity
2026-04-02 18:39:00 -05:00
commit 40b45dff2e
1646 changed files with 329080 additions and 0 deletions

42
node_modules/http-equiv-refresh/package.json generated vendored Normal file
View File

@@ -0,0 +1,42 @@
{
"name": "http-equiv-refresh",
"description": "Parse an HTML meta refresh value.",
"version": "2.0.1",
"license": "MIT",
"author": "Steven Vachon <contact@svachon.com> (https://svachon.com)",
"repository": "github:stevenvachon/http-equiv-refresh",
"main": "index-es5.js",
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babel-plugin-add-module-exports": "^1.0.2",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"ci": "npm test && nyc report --reporter=text-lcov | coveralls",
"posttest": "nyc report --reporter=text-summary --reporter=html",
"prepublishOnly": "npm test",
"pretest": "babel index.js --out-file=index-es5.js --plugins=babel-plugin-add-module-exports --presets=@babel/env --source-maps",
"test": "nyc --silent mocha test.js --bail --check-leaks"
},
"files": [
"index.js",
"index-es5.js",
"index-es5.js.map"
],
"keywords": [
"html",
"http-equiv",
"meta",
"metadata",
"parse",
"refresh"
]
}