forked from Dantama022/stellar-sdk-example-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.14 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
81
82
83
{
"name": "stellar-sdk-example-hub",
"version": "1.0.0",
"description": "🎓 Educational repository of runnable TypeScript examples demonstrating the Stellar & Soroban JavaScript SDK.",
"main": "dist/runner.js",
"bin": {
"stellar-api-inspector": "dist/stellar-api-inspector.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/runner.ts",
"run-example": "ts-node src/runner.ts",
"validate:examples": "ts-node src/validate-examples.ts",
"validate:examples:all": "ts-node src/validate-examples.ts --include-excluded",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "jest --coverage",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist"
},
"keywords": [
"stellar",
"soroban",
"sdk",
"examples",
"tutorial",
"smart-contracts",
"xlm"
],
"author": "Stellar SDK Example Hub Contributors",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"axios": "^1.7.9",
"follow-redirects": "^1.15.9"
},
"dependencies": {
"@stellar/stellar-sdk": "^13.0.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.4.5",
"inquirer": "^8.2.7"
},
"devDependencies": {
"@types/inquirer": "^8.2.13",
"@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",
"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/runner.ts",
"!src/examples/*.ts"
],
"coverageThreshold": {
"global": {
"branches": 30,
"functions": 30,
"lines": 30,
"statements": 30
}
}
}
}