forked from storj-archived/core
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
118 lines (118 loc) · 3.22 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
113
114
115
116
117
118
{
"name": "storj-lib",
"version": "8.7.2",
"description": "implementation of the storj protocol for node.js and the browser",
"main": "index.js",
"directories": {
"test": "test",
"lib": "lib",
"doc": "doc"
},
"scripts": {
"test": "npm run testsuite && npm run linter",
"testsuite": "STORJ_ALLOW_LOOPBACK=1 ./node_modules/.bin/mocha test/** --recursive --exit",
"coverage": "STORJ_ALLOW_LOOPBACK=1 ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive",
"linter": "./node_modules/.bin/eslint ./index.js ./lib ./test",
"build": "./node_modules/.bin/browserify index.js -s storj -o dist/storj.browser.js",
"make-docs": "mkdir -p ./jsdoc && rm -r ./jsdoc && ./node_modules/.bin/jsdoc index.js lib -r -R README.md -u ./doc -c .jsdoc.json --verbose -d ./jsdoc && cp -r doc/assets jsdoc/assets",
"publish-docs": "npm run make-docs && node script/publishdoc.js"
},
"keywords": [
"storj",
"p2p"
],
"repository": {
"type": "git",
"url": "https://github.com/storj/core.git"
},
"author": "Gordon Hall <[email protected]>",
"contributors": [
{
"name": "littleskunk",
"url": "https://github.com/littleskunk"
},
{
"name": "Ryan Foran",
"url": "https://github.com/mrfancymonocle"
},
{
"name": "Philip Hutchins",
"url": "https://github.com/phutchins"
},
{
"name": "Allen Haim",
"url": "https://github.com/misterfish"
},
{
"name": "Alex Leitner",
"url": "https://github.com/aleitner"
},
{
"name": "Chris Pollard",
"url": "https://github.com/cpollard1001"
},
{
"name": "dxhome",
"url": "https://github.com/dxhome"
},
{
"name": "Colm Seale",
"url": "https://github.com/cseale"
}
],
"license": "(AGPL-3.0 AND LGPL-3.0)",
"engines": {
"node": "^8.8.1"
},
"dependencies": {
"async": "^2.6.3",
"bitcore-ecies": "github:StorXNetwork/bitcore-ecies",
"bitcore-lib": "^8.14.4",
"bitcore-message": "github:StorXNetwork/bitcore-message",
"diglet": "^1.0.6",
"diskusage": "^1.1.3",
"hdkey": "^1.1.1",
"ip": "github:StorXNetwork/node-ip",
"jsen": "^0.6.6",
"json-stable-stringify": "^1.0.1",
"kad": "^1.6.4",
"kad-quasar": "^1.2.4",
"kfs": "github:StorXNetwork/kfs",
"knuth-shuffle": "^1.0.1",
"leveldown": "^5.4.1",
"levelup": "^4.3.2",
"merge": "^1.2.1",
"mkdirp": "^0.5.1",
"ms": "^2.1.2",
"mtree": "^1.0.1",
"nat-upnp": "^1.1.0",
"ntp-client": "^0.5.3",
"portfinder": "^1.0.25",
"readable-stream": "^3.5.0",
"request": "^2.88.0",
"restify": "^8.5.1",
"restify-clients": "^2.6.8",
"rimraf": "^2.7.1",
"scrypt": "^6.0.3",
"secp256k1": "^4.0.0",
"semver": "^6.2.0",
"through": "^2.3.8",
"winston": "^3.2.1"
},
"devDependencies": {
"benchmark": "^2.1.1",
"browserify": "^11.1.0",
"chai": "^4.2.0",
"coveralls": "^2.11.2",
"eslint": "^6.8.0",
"gh-pages": "^0.9.0",
"ink-docstrap": "^1.3.2",
"istanbul": "^0.4.5",
"jsdoc": "^3.6.3",
"mocha": "^6.2.2",
"node-mocks-http": "^1.8.1",
"noisegen": "^1.0.0",
"proxyquire": "^2.1.3",
"sinon": "^7.5.0"
}
}