-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.06 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
{
"name": "strudy",
"version": "3.1.1",
"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/",
"requirements.txt"
],
"bugs": {
"url": "https://github.com/w3c/strudy/issues"
},
"author": {
"name": "tidoust",
"email": "[email protected]"
},
"contributors": [
{
"name": "dontcallmedom",
"email": "[email protected]"
}
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"type": "module",
"main": "index.js",
"bin": "./strudy.js",
"devDependencies": {
"mocha": "11.0.1"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/plugin-throttling": "^9.3.1",
"@octokit/rest": "^21.0.1",
"commander": "12.1.0",
"gray-matter": "^4.0.3",
"jsdom": "^25.0.1",
"pyodide": "^0.26.4",
"reffy": "^18.0.1",
"semver": "^7.3.5",
"webidl2": "^24.2.2"
},
"scripts": {
"test": "mocha --recursive"
}
}