forked from decrypto-org/TrustIsRisk.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "trust-is-risk",
"version": "0.0.1",
"description": "A full bitcoin node that implements the Trust Is Risk trust inference system.",
"main": "lib/index.js",
"scripts": {
"build": "flow-remove-types -d lib/ src/",
"test": "npm run build && mocha -t 100000",
"prepublish": "npm run build",
"typecheck": "flow check",
"lint": "./node_modules/.bin/eslint --fix src/ test/",
"check": "npm run lint && npm run typecheck && npm run test",
"postinstall": "scripts/postinstall.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/decrypto-org/TrustIsRisk.js.git"
},
"keywords": [
"trust",
"bitcoin",
"blockchain"
],
"author": "Decrypto-org",
"license": "MIT",
"bugs": {
"url": "https://github.com/decrypto-org/TrustIsRisk.js/issues"
},
"homepage": "https://github.com/decrypto-org/TrustIsRisk.js#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.21.8",
"eslint": "^8.40.0",
"eslint-plugin-flowtype": "^2.50.3",
"flow-bin": "^0.45.0",
"flow-remove-types": "^1.2.3",
"mocha": "^10.2.0",
"should": "^11.2.1",
"should-sinon": "0.0.5",
"sinon": "^5.1.1"
},
"dependencies": {
"bcoin": "git+https://github.com/bcoin-org/bcoin.git#semver:^2.1.2",
"bcrypto": "^5.3.0",
"graph-theory-ford-fulkerson": "^1.0.0",
"sorted-set": "^0.3.0"
}
}