1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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/"
]
}
}
|