-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "@zekemostov/staking-payouts",
"version": "1.4.4",
"description": "CLI to make staking payout transactions for Substrate FRAME-based chains",
"bin": {
"payouts": "build/index.js"
},
"repository": "https://github.com/emostov/staking-payouts.git",
"author": "emostov <z.mostov@gmail.com>",
"bugs": {
"url": "https://github.com/emostov/staking-payouts/issues"
},
"engines": {
"node": ">=14"
},
"files": [
"build"
],
"homepage": "https://github.com/emostov/staking-payouts#readme",
"license": "APACHE-2.0",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"deploy": "rm -rf build/ && yarn build && yarn publish && git push --tags && git push",
"lint": "eslint",
"build": "tsc -p tsconfig.json"
},
"devDependencies": {
"@substrate/dev": "^0.5.4",
"@types/node": "^16.4.3",
"@types/yargs": "^17.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"@polkadot/api": "^9.3.3",
"winston": "^3.3.3",
"yargs": "^17.0.0"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"tmpl": "1.0.5"
}
}