aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/data-urls/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/data-urls/package.json')
-rw-r--r--vanilla/node_modules/data-urls/package.json51
1 files changed, 51 insertions, 0 deletions
diff --git a/vanilla/node_modules/data-urls/package.json b/vanilla/node_modules/data-urls/package.json
new file mode 100644
index 0000000..23ba3e5
--- /dev/null
+++ b/vanilla/node_modules/data-urls/package.json
@@ -0,0 +1,51 @@
+{
+ "name": "data-urls",
+ "description": "Parses data: URLs",
+ "keywords": [
+ "data url",
+ "data uri",
+ "data:",
+ "http",
+ "fetch",
+ "whatwg"
+ ],
+ "version": "7.0.0",
+ "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
+ "license": "MIT",
+ "repository": {
+ "type": "git",
+ "url": "git+https://github.com/jsdom/data-urls.git"
+ },
+ "main": "lib/parser.js",
+ "files": [
+ "lib/"
+ ],
+ "scripts": {
+ "test": "node --test",
+ "coverage": "c8 node --test --experimental-test-coverage",
+ "lint": "eslint",
+ "pretest": "node scripts/get-latest-platform-tests.mjs"
+ },
+ "dependencies": {
+ "whatwg-mimetype": "^5.0.0",
+ "whatwg-url": "^16.0.0"
+ },
+ "devDependencies": {
+ "@domenic/eslint-config": "^4.1.0",
+ "c8": "^10.1.3",
+ "eslint": "^9.39.2",
+ "globals": "^17.3.0"
+ },
+ "engines": {
+ "node": "^20.19.0 || ^22.12.0 || >=24.0.0"
+ },
+ "c8": {
+ "reporter": [
+ "html"
+ ],
+ "exclude": [
+ "scripts/",
+ "test/"
+ ]
+ }
+}