Spaces:
Paused
Paused
| { | |
| "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/" | |
| ] | |
| } | |
| } | |