-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.77 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "fauxdom-with-canvas",
"description": "A fast and lightweight HTML5 parser and DOM with built-in canvas",
"version": "0.1.2",
"author": "Flaki <[email protected]>",
"contributors": [
"Joe Stenger <[email protected]>",
"Flaki <[email protected]>"
],
"license": "MIT",
"keywords": [
"dom",
"html",
"parser",
"selector",
"html5",
"canvas"
],
"repository": {
"type": "git",
"url": "https://github.com/radiopaedia/fauxdom-with-canvas.git"
},
"bugs": {
"url": "https://github.com/radiopaedia/fauxdom-with-canvas/issues"
},
"homepage": "https://github.com/radiopaedia/fauxdom-with-canvas",
"files": [
"lib/fauxdom-with-canvas.cjs",
"lib/fauxdom-with-canvas.mjs",
"lib/fauxdom-with-canvas.js",
"lib/entities.json"
],
"directories": {
"lib": "lib/"
},
"engines": {
"node": ">=20"
},
"main": "index.js",
"exports": {
"import": "./lib/fauxdom-with-canvas.mjs",
"require": "./lib/fauxdom-with-canvas.cjs",
"default": "./index.js"
},
"type": "module",
"scripts": {
"test": "npm run build:debug && jest",
"build:ts": "npm exec tsc",
"build:debug": "rollup -c --configDebug --silent",
"prepare": "npm exec tsc && rollup -c --silent"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-wasm": "^6.2.2",
"compressing": "^1.5.0",
"jest": "^29.3.0",
"rollup": "^2.79.1",
"rollup-plugin-strip-code": "^0.2.7",
"squoosh": "https://github.com/GoogleChromeLabs/squoosh/archive/refs/tags/v1.12.0.tar.gz",
"typescript": "^5.3.3"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"lib/fauxdom-with-canvas.cjs"
],
"snapshotFormat": {
"escapeString": true,
"printBasicPrototype": true
},
"verbose": false,
"watchPathIgnorePatterns": [
"<rootDir>/debug",
"<rootDir>/src"
]
}
}