-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 2.09 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
{
"$schema": "http://json.schemastore.org/package",
"name": "@siteimprove/alfa-scraper",
"homepage": "https://alfa.siteimprove.com",
"version": "0.76.2",
"license": "MIT",
"description": "An implementation of a simple web scraper capable of producing page objects",
"repository": {
"type": "git",
"url": "github:Siteimprove/alfa-integrations",
"directory": "packages/alfa-scraper"
},
"bugs": "https://github.com/siteimprove/alfa/issues",
"engines": {
"node": ">=20.0.0"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"dependencies": {
"@siteimprove/alfa-array": "^0.97.0",
"@siteimprove/alfa-device": "^0.97.0",
"@siteimprove/alfa-dom": "^0.97.0",
"@siteimprove/alfa-equatable": "^0.97.0",
"@siteimprove/alfa-http": "^0.97.0",
"@siteimprove/alfa-iterable": "^0.97.0",
"@siteimprove/alfa-json": "^0.97.0",
"@siteimprove/alfa-mapper": "^0.97.0",
"@siteimprove/alfa-option": "^0.97.0",
"@siteimprove/alfa-promise": "^0.97.0",
"@siteimprove/alfa-puppeteer": "workspace:^",
"@siteimprove/alfa-result": "^0.97.0",
"@siteimprove/alfa-time": "^0.97.0",
"@siteimprove/alfa-url": "^0.97.0",
"@siteimprove/alfa-web": "^0.97.0",
"puppeteer": "^23.0.0"
},
"devDependencies": {
"@siteimprove/alfa-test-deprecated": "^0.97.0"
},
"peerDependencies": {
"@siteimprove/alfa-array": "^0.97.0",
"@siteimprove/alfa-device": "^0.97.0",
"@siteimprove/alfa-dom": "^0.97.0",
"@siteimprove/alfa-equatable": "^0.97.0",
"@siteimprove/alfa-http": "^0.97.0",
"@siteimprove/alfa-iterable": "^0.97.0",
"@siteimprove/alfa-json": "^0.97.0",
"@siteimprove/alfa-mapper": "^0.97.0",
"@siteimprove/alfa-option": "^0.97.0",
"@siteimprove/alfa-promise": "^0.97.0",
"@siteimprove/alfa-result": "^0.97.0",
"@siteimprove/alfa-time": "^0.97.0",
"@siteimprove/alfa-url": "^0.97.0",
"@siteimprove/alfa-web": "^0.97.0"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
}
}