-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
48 lines (48 loc) · 922 Bytes
/
package.json
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
{
"name": "data-urls",
"description": "Parses data: URLs",
"keywords": [
"data url",
"data uri",
"data:",
"http",
"fetch",
"whatwg"
],
"version": "5.0.0",
"author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
"license": "MIT",
"repository": "jsdom/data-urls",
"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.js"
},
"dependencies": {
"whatwg-mimetype": "^4.0.0",
"whatwg-url": "^14.0.0"
},
"devDependencies": {
"@domenic/eslint-config": "^3.0.0",
"c8": "^8.0.1",
"eslint": "^8.53.0"
},
"engines": {
"node": ">=18"
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"scripts/",
"test/"
]
}
}