-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1 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
{
"name": "strudy",
"version": "3.2.3",
"description": "Web spec analysis tool that can process crawl reports created by Reffy.",
"repository": {
"type": "git",
"url": "https://github.com/w3c/strudy.git"
},
"files": [
"index.js",
"strudy.js",
"src/"
],
"bugs": {
"url": "https://github.com/w3c/strudy/issues"
},
"author": {
"name": "tidoust",
"email": "fd@w3.org"
},
"contributors": [
{
"name": "dontcallmedom",
"email": "dom@w3.org"
}
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"type": "module",
"main": "index.js",
"bin": "./strudy.js",
"dependencies": {
"@actions/core": "^3.0.0",
"@octokit/plugin-throttling": "^11.0.1",
"@octokit/rest": "^22.0.0",
"cddlparser": "^0.6.0",
"commander": "14.0.3",
"gray-matter": "^4.0.3",
"jsdom": "^29.0.1",
"reffy": "^20.0.1",
"semver": "^7.3.5",
"webidl2": "^24.2.2"
},
"scripts": {
"test": "node --test --test-reporter=spec"
}
}