-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.08 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
47
48
{
"name": "@runonflux/flux-sdk",
"version": "1.0.3",
"description": "Flux SDK - interact with the Flux network",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/runonflux/flux-sdk.git"
},
"author": "Tadeas Kmenta",
"license": "MIT",
"scripts": {
"test": "mocha tests --timeout 10000",
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix"
},
"dependencies": {
"@runonflux/bitcoinjs-message": "^2.3.0",
"bs58check": "^4.0.0",
"create-hash": "^1.2.0",
"secp256k1": "^5.0.1"
},
"devDependencies": {
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"mocha": "^10.7.3"
},
"bugs": {
"url": "https://github.com/runonflux/flux-sdk/issues"
},
"homepage": "https://github.com/runonflux/flux-sdk#readme",
"directories": {
"lib": "lib",
"test": "tests"
},
"keywords": [
"flux",
"blockchain",
"crypto",
"web3",
"fluxnodes",
"nodes",
"infrastructure",
"decentralized"
]
}