forked from w3c/reffy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.8 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "reffy",
"version": "1.3.1",
"description": "W3C/WHATWG spec dependencies exploration companion. Features a short set of tools to study spec references as well as WebIDL term definitions and references found in W3C specifications.",
"repository": {
"type": "git",
"url": "https://github.com/tidoust/reffy.git"
},
"bugs": {
"url": "https://github.com/tidoust/reffy/issues"
},
"author": {
"name": "tidoust",
"email": "[email protected]"
},
"contributors": [
{
"name": "dontcallmedom",
"email": "[email protected]"
}
],
"license": "MIT",
"bin": {
"reffy": "./reffy.js",
"check-specs": "./src/cli/check-specs.js",
"crawl-specs": "./src/cli/crawl-specs.js",
"extract-webidl": "./src/cli/extract-webidl.js",
"extract-cssdfn": "./src/cli/extract-cssdfn.js",
"find-spec": "./src/cli/find-spec.js",
"generate-report": "./src/cli/generate-report.js",
"merge-crawl-results": "./src/cli/merge-crawl-results.js",
"parse-references": "./src/cli/parse-references.js",
"parse-webidl": "./src/cli/parse-webidl.js",
"study-crawl": "./src/cli/study-crawl.js"
},
"dependencies": {
"chai": "^4.1.2",
"commander": "^2.15.1",
"fetch-filecache-for-crawling": "^3.0.2",
"jsdom": "^11.10.0",
"mocha": "^5.2.0",
"node-pandoc": "^0.3.0",
"webidl2": "^17.0.2"
},
"devDependencies": {
"jasmine": "^2.4.1"
},
"scripts": {
"all": "node reffy.js run w3c all && node reffy.js run w3c-tr all && node reffy.js run whatwg all",
"diff": "node reffy.js run w3c diff && node reffy.js run w3c-tr diff && node reffy.js run whatwg diff",
"diffnew": "node reffy.js run w3c diffnew && node reffy.js run w3c-tr diffnew && node reffy.js run whatwg diffnew",
"w3c": "node reffy.js run w3c all",
"w3c-crawl": "node reffy.js run w3c crawl",
"w3c-study": "node reffy.js run w3c study",
"w3c-markdown": "node reffy.js run w3c markdown",
"w3c-html": "node reffy.js run w3c html",
"w3c-diff": "node reffy.js run w3c diff",
"w3c-diffnew": "node reffy.js run w3c diffnew",
"w3c-tr": "node reffy.js run w3c-tr all",
"w3c-tr-crawl": "node reffy.js run w3c-tr crawl",
"w3c-tr-study": "node reffy.js run w3c-tr study",
"w3c-tr-markdown": "node reffy.js run w3c-tr markdown",
"w3c-tr-html": "node reffy.js run w3c-tr html",
"w3c-tr-diff": "node reffy.js run w3c-tr diff",
"w3c-tr-diffnew": "node reffy.js run w3c-tr diffnew",
"whatwg": "node reffy.js run whatwg all",
"whatwg-crawl": "node reffy.js run whatwg crawl",
"whatwg-study": "node reffy.js run whatwg study",
"whatwg-markdown": "node reffy.js run whatwg markdown",
"whatwg-html": "node reffy.js run whatwg html",
"whatwg-diff": "node reffy.js run whatwg diff",
"whatwg-diffnew": "node reffy.js run whatwg diffnew"
}
}