-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
92 lines (92 loc) · 2.48 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
{
"name": "@orcproject/orc",
"version": "0.0.0",
"description": "distributed anonymous storage network",
"main": "index.js",
"bin": {
"orc": "bin/orc.js",
"orctool": "bin/orctool.js"
},
"directories": {
"test": "test",
"lib": "lib",
"doc": "doc"
},
"scripts": {
"test": "npm run unit-tests && npm run integration-tests && npm run e2e-tests && npm run linter",
"unit-tests": "mocha test/*.unit.js",
"integration-tests": "mocha test/*.integration.js",
"e2e-tests": "mocha test/*.e2e.js",
"coverage": "istanbul cover _mocha -- --recursive",
"linter": "eslint ./index.js ./lib ./test",
"generate-docs": "mkdir -p ./jsdoc && rm -r ./jsdoc && jsdoc index.js lib -r -R README.md -u ./doc -c .jsdoc.json --verbose -d ./jsdoc",
"publish-docs": "gh-pages -d jsdoc --repo [email protected]:orcproject/orc.git"
},
"keywords": [
"storj",
"p2p",
"kademlia",
"quasar",
"cloud",
"distributed"
],
"repository": {
"type": "git",
"url": "https://github.com/orcproject/orc.git"
},
"author": "Gordon Hall <[email protected]>",
"contributors": [],
"license": "AGPL-3.0",
"engines": {
"node": "6.x.x"
},
"dependencies": {
"@ronomon/reed-solomon": "^4.0.1",
"async": "^2.4.1",
"basic-auth": "^1.1.0",
"boscar": "^1.1.1",
"busboy": "^0.2.14",
"bytes": "^2.5.0",
"commander": "^2.9.0",
"concat-stream": "^1.6.0",
"connect": "^3.6.1",
"du": "^0.1.0",
"ip": "littleskunk/node-ip#b1e7ec0cbff9f7841b1584e50339a774363437c0",
"jsen": "bugventure/jsen#9e57a9d653ff4ea47d364fc37da0f1659bfb8e89",
"json-stable-stringify": "^1.0.1",
"kad": "^2.3.2",
"kad-hibernate": "^1.0.0",
"kad-onion": "^1.5.1",
"kad-quasar": "^2.1.0",
"kad-spartacus": "^2.2.1",
"kad-traverse": "^1.1.1",
"knuth-shuffle": "^1.0.1",
"leveldown": "^1.7.1",
"levelup": "^1.3.8",
"merge": "^1.2.0",
"mkdirp": "^0.5.1",
"ms": "^2.0.0",
"mtree": "^1.0.0",
"pem": "^1.9.7",
"rc": "^1.2.1",
"secp256k1": "^3.2.2",
"semver": "^5.1.0",
"tiny": "0.0.10",
"zcash": "0.0.5"
},
"devDependencies": {
"chai": "^2.2.0",
"coveralls": "^2.11.2",
"eslint": "^3.14.0",
"gh-pages": "^0.9.0",
"ink-docstrap": "bookchin/docstrap",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.0",
"memdown": "^1.2.4",
"mocha": "^2.2.4",
"node-mocks-http": "^1.6.1",
"proxyquire": "^1.7.3",
"rimraf": "^2.6.1",
"sinon": "^1.14.1"
}
}