-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.83 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.83 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "async-preloader",
"version": "9.0.0",
"description": "Assets preloader using async/await and fetch for usage both in the browser and Node.js.",
"keywords": [
"preloader",
"assets",
"async",
"await",
"typescript",
"ES2017",
"fetch"
],
"homepage": "https://github.com/dmnsgn/async-preloader",
"bugs": "https://github.com/dmnsgn/async-preloader/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/dmnsgn/async-preloader.git"
},
"funding": [
{
"type": "individual",
"url": "https://paypal.me/dmnsgn"
},
{
"type": "individual",
"url": "https://commerce.coinbase.com/checkout/56cbdf28-e323-48d8-9c98-7019e72c97f3"
}
],
"license": "MIT",
"author": "Damien Seguin (https://github.com/dmnsgn)",
"type": "module",
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./lib/index.js"
}
},
"main": "lib/index.js",
"types": "types/index.d.ts",
"scripts": {
"coverage": "nyc report --reporter=text --reporter=html",
"dev": "npx snowdev --no-serve",
"prejest": "npx snowdev install",
"jest": "NODE_OPTIONS=--experimental-vm-modules npx jest test/ --watch --no-cache",
"pretest": "npm exec snowdev --version && npx snowdev install && npx snowdev build --no-docs --no-lint",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest test/ --runInBand"
},
"jest": {
"globalSetup": "jest-environment-puppeteer/setup",
"globalTeardown": "<rootDir>/test/global-teardown.js",
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"preset": "ts-jest/presets/js-with-ts-esm",
"resolver": "jest-ts-webcompat-resolver",
"setupFilesAfterEnv": [
"expect-puppeteer"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts|js)x?$",
"transform": {
"^.+\\.(t|j)s$": [
"ts-jest",
{
"useESM": true
}
]
}
},
"dependencies": {
"fontfaceobserver-es": "^3.3.3",
"tslib": "^2.8.1"
},
"devDependencies": {
"@types/expect-puppeteer": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/jest-environment-puppeteer": "^5.0.6",
"@types/node": "^25.5.0",
"@xmldom/xmldom": "^0.8.11",
"es-module-shims": "^2.8.0",
"jest": "^30.3.0",
"jest-puppeteer": "^11.0.0",
"jest-ts-webcompat-resolver": "^1.0.1",
"mime-types": "^3.0.2",
"nyc": "^18.0.0",
"portfinder": "^1.0.38",
"puppeteer": "^24.40.0",
"puppeteer-to-istanbul": "^1.4.0",
"snowdev": "^2.7.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.0.0",
"npm": ">=10.5.1",
"snowdev": ">=2.7.x"
},
"jest-puppeteer": {
"launch": {
"headless": "new"
}
},
"snowdev": {
"dependencies": [
"es-module-shims",
"fontfaceobserver-es"
]
}
}