This repository has been archived by the owner on Oct 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
117 lines (117 loc) · 3.32 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
{
"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",
"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.5.0",
"bitcore-ecies": "=1.0.1",
"bitcore-lib": "=0.13.19",
"bitcore-message": "=1.0.4",
"diglet": "^1.0.6",
"diskusage": "^0.2.4",
"hdkey": "^0.7.1",
"ip": "littleskunk/node-ip#b1e7ec0cbff9f7841b1584e50339a774363437c0",
"jsen": "bugventure/jsen#9e57a9d653ff4ea47d364fc37da0f1659bfb8e89",
"json-stable-stringify": "^1.0.1",
"kad": "^1.6.4",
"kad-logger-json": "^0.1.2",
"kad-quasar": "^1.2.4",
"kfs": "storj/kfs#275bbfe87ab09efdad2042114fd398dbfd02eadb",
"knuth-shuffle": "^1.0.1",
"leveldown": "^2.0.0",
"levelup": "^2.0.0",
"merge": "^1.2.0",
"mkdirp": "^0.5.1",
"ms": "^0.7.1",
"mtree": "^1.0.0",
"nat-upnp": "^1.1.0",
"ntp-client": "bookchin/node-ntp-client#v0.5.5",
"portfinder": "^1.0.3",
"readable-stream": "^2.0.6",
"request": "^2.83.0",
"restify": "^4.3.0",
"rimraf": "^2.6.2",
"scrypt": "^6.0.3",
"secp256k1": "^3.3.0",
"semver": "^5.4.1",
"through": "^2.3.8"
},
"devDependencies": {
"benchmark": "^2.1.1",
"browserify": "^11.1.0",
"chai": "^2.2.0",
"coveralls": "^2.11.2",
"eslint": "^3.14.0",
"gh-pages": "^0.9.0",
"ink-docstrap": "bookchin/docstrap#f175ba82cd7175e851304c6df3db1d37424b7545",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.0",
"mocha": "^2.2.4",
"node-mocks-http": "^1.5.4",
"noisegen": "^1.0.0",
"proxyquire": "^1.7.3",
"sinon": "^1.14.1"
}
}