-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
58 lines (58 loc) · 1.25 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
{
"name": "reffy",
"version": "18.2.1",
"description": "W3C/WHATWG spec dependencies exploration companion. Features a short set of tools to study spec references as well as WebIDL term definitions and references found in W3C specifications.",
"repository": {
"type": "git",
"url": "https://github.com/w3c/reffy.git"
},
"files": [
"index.js",
"reffy.js",
"src/",
"schemas/"
],
"bugs": {
"url": "https://github.com/w3c/reffy/issues"
},
"author": {
"name": "tidoust",
"email": "[email protected]"
},
"contributors": [
{
"name": "dontcallmedom",
"email": "[email protected]"
}
],
"license": "MIT",
"engines": {
"node": ">=20.18.1"
},
"type": "module",
"main": "index.js",
"bin": "./reffy.js",
"dependencies": {
"ajv": "8.17.1",
"ajv-formats": "3.0.1",
"commander": "13.0.0",
"fetch-filecache-for-crawling": "5.1.1",
"puppeteer": "24.1.0",
"semver": "^7.3.5",
"web-specs": "3.34.0",
"webidl2": "24.4.1"
},
"devDependencies": {
"mocha": "11.0.1",
"respec": "35.2.2",
"respec-hljs": "2.1.1",
"rollup": "4.30.1",
"undici": "^7.0.0"
},
"overrides": {
"puppeteer": "$puppeteer"
},
"scripts": {
"test": "mocha --recursive tests/"
}
}