-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.31 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
{
"name": "esrs-xrbl-parser",
"description": "Tools for parsing European Sustainability Reporting Standards (ESRS) taxonomies in XBRL format",
"keywords": [
"esrs",
"xrbl",
"parser",
"efrag",
"csrd",
"esg",
"sustainability",
"reporting"
],
"author": "The Climate Action Agency AB",
"version": "0.1.0",
"license": "ISC",
"type": "module",
"main": "src/list.ts",
"scripts": {
"list": "npx tsx src/list.ts",
"list:all": "npm run list ESRS-Set1-XBRL-Taxonomy/xbrl.efrag.org/taxonomy/esrs/2023-12-22/esrs_all.xsd",
"list:core": "npm run list ESRS-Set1-XBRL-Taxonomy/xbrl.efrag.org/taxonomy/esrs/2023-12-22/common/esrs_cor.xsd",
"linkbaseTree": "npx tsx src/linkbaseTree.ts",
"outline": "npx tsx src/outline.ts",
"parse-html": "npx tsx src/parse-html.ts",
"examples": "npm run list:all > examples/list_all.txt; npm run list:core > examples/list_core.txt; npm run linkbaseTree > examples/linkbaseTree.txt; npm run outline > examples/outline.txt; npm run outline sql > examples/outline.sql"
},
"dependencies": {
"cheerio": "^1.0.0",
"node-fetch": "^3.3.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/node": "^22.5.5",
"@types/xml2js": "^0.4.14",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}