initial commit

This commit is contained in:
Zoe
2023-01-03 09:29:04 -06:00
commit 7851137d88
12889 changed files with 2557443 additions and 0 deletions

48
node_modules/postcss-url/package.json generated vendored Normal file
View File

@@ -0,0 +1,48 @@
{
"name": "postcss-url",
"version": "10.1.3",
"description": "PostCSS plugin to rebase or inline on url().",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"url",
"rebase",
"inline",
"base64",
"assets"
],
"author": "Maxime Thirouin",
"license": "MIT",
"repository": "https://github.com/postcss/postcss-url.git",
"main": "src/index.js",
"files": [
"src"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"make-dir": "~3.1.0",
"mime": "~2.5.2",
"minimatch": "~3.0.4",
"xxhashjs": "~0.2.2"
},
"devDependencies": {
"chai": "4.1.2",
"eslint": "7.12.1",
"mocha": "8.2.1",
"npmpub": "5.0.0",
"postcss": "^8.0.0",
"postcss-import": "12.0.0"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"scripts": {
"lint": "eslint --fix .",
"tests": "mocha --recursive --require ./test/setup",
"test": "npm run lint && npm run tests",
"release": "npmpub"
}
}