-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2 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
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
75
76
77
78
79
80
{
"name": "stellar-api-inspector",
"version": "1.0.0",
"description": "🔍 A command-line inspection and health-checking tool for Stellar Horizon and Soroban RPC endpoints.",
"main": "dist/src/cli/index.js",
"bin": {
"stellar-api-inspector": "./dist/src/cli/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli/index.ts",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "jest --coverage",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"stellar",
"soroban",
"horizon",
"rpc",
"inspector",
"health-check",
"cli"
],
"author": "Stellar API Inspector Contributors",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@stellar/stellar-sdk": "^13.0.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.4.5",
"inquirer": "^9.3.8",
"ora": "^5.4.1",
"table": "^6.8.1"
},
"devDependencies": {
"@types/inquirer": "^9.0.10",
"@types/jest": "^29.5.11",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"nock": "^13.4.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/cli/index.ts"
],
"coverageThreshold": {
"global": {
"branches": 20,
"functions": 20,
"lines": 20,
"statements": 20
}
}
}
}