forked from w3c/webref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.35 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
{
"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": ">=10"
},
"devDependencies": {
"@actions/core": "1.10.0",
"@jsdevtools/npm-publish": "1.4.3",
"@octokit/plugin-throttling": "^4.3.2",
"@octokit/rest": "19.0.5",
"@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.1.3",
"mocha": "10.2.0",
"reffy": "11.3.1",
"rimraf": "3.0.2",
"webidl2": "24.2.2"
},
"scripts": {
"create-patch": "node tools/create-patch.js",
"prepare": "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"
}
}