-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 732 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 732 Bytes
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
{
"name": "edgar-fabric-ingest",
"version": "0.1.0",
"description": "EDGAR to CMD+RVL Fabric events ingestor",
"license": "MIT",
"bin": {
"edgar-fabric-ingest": "dist/cli.js"
},
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "ts-node src/cli.ts",
"test": "vitest run",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"prepare": "npm run build"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^20.11.24",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
}
}