-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.3 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": "xbrl-parser",
"version": "1.2.4",
"description": "Module for parsing XBRL files for specific market taxonomies",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "rm -rf dist/ && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ./fixup",
"prepublish": "npm run build",
"test": "jest",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exitplanner/xbrl-parser.git"
},
"keywords": [
"xbrl",
"xml",
"parser",
"financial",
"reporting"
],
"author": "David Volquartz Lebech <david@lebech.info> (https://davidlebech.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/exitplanner/xbrl-parser/issues"
},
"homepage": "https://github.com/exitplanner/xbrl-parser#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"fast-xml-parser": "^4.1.3"
}
}