-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
52 lines (52 loc) · 1.39 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
{
"name": "webref",
"description": "Machine-readable references and analyses of terms defined in web browser specifications",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/w3c/webref.git"
},
"bugs": {
"url": "https://github.com/w3c/webref/issues"
},
"author": {
"name": "tidoust",
"email": "[email protected]"
},
"contributors": [
{
"name": "foolip",
"email": "[email protected]"
}
],
"license": "MIT",
"engines": {
"node": ">=20"
},
"type": "module",
"devDependencies": {
"@actions/core": "1.11.1",
"@jsdevtools/npm-publish": "3.1.1",
"@octokit/plugin-throttling": "^9.3.2",
"@octokit/rest": "21.0.2",
"@webref/css": "file:packages/css",
"@webref/elements": "file:packages/elements",
"@webref/events": "file:packages/events",
"@webref/idl": "file:packages/idl",
"css-tree": "2.3.1",
"flags": "0.2.2",
"mocha": "10.8.2",
"reffy": "17.2.7",
"rimraf": "6.0.1",
"strudy": "^3.0.2",
"webidl2": "24.4.1"
},
"scripts": {
"create-patch": "node tools/create-patch.js",
"curate": "node tools/prepare-curated.js ed curated && node tools/prepare-packages.js curated packages",
"test": "mocha --recursive",
"test-css": "mocha --recursive test/css",
"test-elements": "mocha --recursive test/elements",
"test-idl": "mocha --recursive test/idl"
}
}