forked from w3c/webref
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"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.3.0",
"@jsdevtools/npm-publish": "1.4.3",
"@octokit/rest": "18.5.3",
"@webref/css": "file:packages/css",
"@webref/elements": "file:packages/elements",
"@webref/idl": "file:packages/idl",
"css-tree": "1.1.2",
"flags": "0.1.3",
"mocha": "8.2.0",
"rimraf": "3.0.2",
"webidl2": "24.0.1"
},
"scripts": {
"prepare": "node packages/prepare.js",
"test": "mocha --recursive --delay",
"test-css": "mocha --recursive --delay test/css",
"test-elements": "mocha --recursive --delay test/elements",
"test-idl": "mocha --recursive --delay test/idl"
}
}