forked from storj-archived/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.24 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": "5.1.0",
"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/jshint --config .jshintrc ./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"
}
],
"license": "(AGPL-3.0 AND LGPL-3.0)",
"engines": {
"node": "^6.9.1"
},
"dependencies": {
"async": "^1.5.2",
"bitcore-ecies": "^1.0.1",
"bitcore-lib": "^0.13.12",
"bitcore-message": "^1.0.2",
"bitcore-mnemonic": "^1.1.1",
"colors": "^1.1.2",
"flushwritable": "^1.0.0",
"hdkey": "^0.7.1",
"ip": "^1.1.2",
"jsen": "bugventure/jsen#9e57a9d653ff4ea47d364fc37da0f1659bfb8e89",
"json-stable-stringify": "^1.0.1",
"kad": "^1.6.1",
"kad-logger-json": "^0.1.2",
"kad-quasar": "^1.0.1",
"kfs": "^2.2.4",
"knuth-shuffle": "^1.0.1",
"leveldown": "^1.4.6",
"levelup": "^1.3.1",
"merge": "^1.2.0",
"mime": "^1.3.4",
"mkdirp": "^0.5.1",
"ms": "^0.7.1",
"mtree": "^0.0.1",
"nat-upnp": "^1.0.2",
"node-tar.gz": "^1.0.0",
"node-uuid": "^1.4.7",
"ntp-client": "bookchin/node-ntp-client#v0.5.5",
"portfinder": "^1.0.3",
"readable-stream": "^2.0.6",
"request": "^2.70.0",
"rimraf": "^2.5.3",
"secp256k1": "^3.2.2",
"semver": "^5.1.0",
"through": "^2.3.8",
"tmp": "0.0.28",
"unorm": "^1.4.1",
"ws": "^1.1.0"
},
"devDependencies": {
"benchmark": "^2.1.1",
"browserify": "^11.1.0",
"chai": "^2.2.0",
"coveralls": "^2.11.2",
"gh-pages": "^0.9.0",
"ink-docstrap": "bookchin/docstrap",
"istanbul": "^0.3.13",
"jsdoc": "^3.4.0",
"jshint": "2.8.0",
"mocha": "^2.2.4",
"noisegen": "^1.0.0",
"pem": "^1.8.1",
"proxyquire": "^1.7.3",
"sinon": "^1.14.1"
}
}