-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"$schema": "http://json.schemastore.org/package",
"name": "@siteimprove/alfa-cheerio",
"homepage": "https://alfa.siteimprove.com",
"version": "0.78.0",
"license": "MIT",
"description": "Functionality for translating Cheerio elements into page objects",
"repository": {
"type": "git",
"url": "github:Siteimprove/alfa-integrations",
"directory": "packages/alfa-cheerio"
},
"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-device": "^0.99.0",
"@siteimprove/alfa-dom": "^0.99.0",
"@siteimprove/alfa-http": "^0.99.0",
"@siteimprove/alfa-web": "^0.99.0",
"cheerio": "^1.0.0-rc.12",
"domhandler": "^4.2.2"
},
"peerDependencies": {
"@siteimprove/alfa-device": "^0.99.0",
"@siteimprove/alfa-dom": "^0.99.0",
"@siteimprove/alfa-http": "^0.99.0",
"@siteimprove/alfa-web": "^0.99.0"
},
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/"
}
}