-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.58 KB
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
{
"name": "eudi-nexus",
"version": "1.0.0",
"description": "EUDI Wallet ecosystem - ETSI ESI standards reference graph and analysis tool",
"type": "module",
"scripts": {
"scrape": "node src/work-program-scraper.js",
"analyze": "cd scripts && node analyze.js",
"markdown": "cd scripts && node generate-markdown.js",
"download": "cd scripts && node download-specs.js",
"download:test": "cd scripts && node download-specs.js --limit=5 --published-only",
"download:oidf": "cd scripts && node download-oidf-specs.js",
"references": "cd scripts && node extract-references.js",
"references:all": "cd scripts && node extract-references.js --all",
"references:drafts": "cd scripts && node extract-references.js --include-drafts",
"references:all:drafts": "cd scripts && node extract-references.js --all --include-drafts",
"crawl": "cd scripts && node crawl-references.js",
"crawl:deep": "cd scripts && node crawl-references.js --depth 2",
"crawl:verbose": "cd scripts && node crawl-references.js --verbose",
"build": "cd scripts && node extract-references.js --include-drafts",
"build:full": "cd scripts && node crawl-references.js",
"serve": "cd downloads && python3 -m http.server 9999",
"all": "npm run scrape && npm run analyze && npm run markdown && npm run download:oidf"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.3.1",
"fetch-cookie": "^3.0.1",
"mammoth": "^1.11.0",
"node-fetch": "^3.3.2",
"pdf-parse": "^1.1.1",
"tough-cookie": "^4.1.3"
},
"engines": {
"node": ">=22.0.0"
}
}