-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.06 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"author": {
"name": "Lily Anne Hall",
"email": "[email protected]"
},
"bin": {
"kadence": "bin/kadence.js"
},
"bugs": {
"url": "https://github.com/tacticalchihuahua/kadence/issues"
},
"contributors": [
{
"name": "omphalos",
"url": "https://github.com/omphalos"
},
{
"name": "Alexander Leitner",
"url": "https://github.com/aleitner"
},
{
"name": "Trey Griffith",
"url": "https://github.com/treygriffith"
},
{
"name": "Janko Simonovic",
"url": "https://gitlab.com/simonovic86"
}
],
"dependencies": {
"@tacticalchihuahua/diglet": "^4.0.0",
"@tacticalchihuahua/equihash": "^1.0.0",
"@tacticalchihuahua/granax": "^3.3.0",
"async": "^2.6.0",
"atbf": "^1.1.0",
"boscar": "^2.0.0",
"bunyan": "^1.8.12",
"bunyan-rotating-file-stream": "^1.6.3",
"bytes": "^3.0.0",
"commander": "^2.9.0",
"concat-stream": "^1.6.0",
"daemon": "^1.1.0",
"encoding-down": "^6.0.1",
"ip": "^1.1.5",
"json-stable-stringify": "^1.0.1",
"jsonrpc-lite": "^1.3.0",
"knuth-shuffle": "^1.0.8",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"lru-cache": "^4.1.1",
"merge": "^1.2.1",
"metapipe": "^2.0.2",
"mkdirp": "^0.5.1",
"ms": "^2.1.1",
"nat-pmp": "*",
"nat-upnp": "^1.1.1",
"network": "^0.4.1",
"node-gyp": "^10.2.0",
"npid": "^0.4.0",
"onion-regex": "^2.0.8",
"pem": "^1.13.2",
"rc": "^1.2.8",
"secp256k1": "=3.2.2",
"semver": "^5.1.0",
"socks": "^1.1.10",
"split": "^1.0.1",
"uuid": "^3.2.1"
},
"description": "extensible, hardened, and flexible distributed systems framework",
"devDependencies": {
"chai": "^2.2.0",
"clean-jsdoc-theme": "^4.3.0",
"coveralls": "^3.0.1",
"eslint": "^5.14.1",
"istanbul": "^1.1.0-alpha.1",
"jsdoc": "^3.6.3",
"memdown": "^2.0.0",
"mocha": "^5.2.0",
"proxyquire": "^1.8.0",
"rimraf": "^2.6.1",
"sinon": "^2.4.1"
},
"directories": {
"test": "test",
"lib": "lib",
"doc": "doc"
},
"engines": {
"node": ">=10.x.x"
},
"homepage": "https://tacticalchihuahua.lol/kadence",
"keywords": [],
"license": "AGPL-3.0",
"main": "index.js",
"name": "@tacticalchihuahua/kadence",
"repository": {
"type": "git",
"url": "git+https://github.com/tacticalchihuahua/kadence.git"
},
"scripts": {
"clean": "docker rm $(docker ps -a -q --filter 'network=kadence_default')",
"coverage": "istanbul cover _mocha -- --exit --recursive",
"e2e-tests": "mocha --exit test/*.e2e.js",
"integration-tests": "mocha --exit test/*.integration.js",
"linter": "eslint ./index.js ./lib",
"start": "docker-compose up --build --force-recreate --always-recreate-deps",
"test": "npm run unit-tests && npm run integration-tests && npm run e2e-tests && npm run linter",
"unit-tests": "mocha --exit test/*.unit.js",
"generate-docs": "mkdir -p ./docs && rm -r ./docs && jsdoc lib -r -R README.md -u ./tutorials -c .jsdoc.json --verbose -d ./docs"
},
"version": "7.0.0"
}