-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 891 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 891 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
32
33
34
35
36
37
{
"name": "alien-goats",
"version": "2.2.0",
"description": "Simple CLI for minting Stellar issued assets",
"main": "src/cli.js",
"bin": {
"alien-goats": "src/cli.js"
},
"scripts": {
"start": "node src/cli.js",
"lint": "node -e \"console.log('No linter configured')\"",
"test:e2e": "node scripts/test-e2e.js",
"test:e2e:soroban": "ALIENGOAT_E2E_SOROBAN=1 node scripts/test-e2e.js",
"cleanup": "node scripts/cleanup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mallond/alien-goats.git"
},
"keywords": [
"stellar",
"token",
"cli",
"mint",
"aliengoat"
],
"license": "ISC",
"homepage": "https://github.com/mallond/alien-goats#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@stellar/stellar-sdk": "^13.3.0",
"commander": "^12.1.0",
"dotenv": "^16.6.1"
}
}