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 23
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "kfs",
"version": "4.0.0",
"description": "a kademlia inspired local file store based on leveldb ",
"main": "index.js",
"bin": {
"kfs": "bin/kfs.js"
},
"scripts": {
"test": "npm run testsuite && npm run linter",
"testsuite": "mocha test/** --recursive",
"linter": "jshint --config .jshintrc ./index.js ./lib ./test",
"coverage": "istanbul cover _mocha -- --recursive",
"generate-docs": "mkdir -p ./jsdoc && rm -r ./jsdoc && jsdoc index.js lib -r -R README.md -u ./doc -c .jsdoc.json --verbose -d ./jsdoc && mkdir -p jsdoc/doc/img && cp -r doc/img/* jsdoc/doc/img",
"deploy-docs": "gh-pages -d jsdoc --repo git@github.com:Storj/kfs.git",
"benchmark": "node perf/index.js exec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/storj/kfs.git"
},
"keywords": [
"kad",
"kademlia",
"leveldb",
"levelup",
"leveldown",
"file",
"store",
"system"
],
"author": "Gordon Hall <gordon@gordonwritescode.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/storj/kfs/issues"
},
"homepage": "https://github.com/storj/kfs#readme",
"dependencies": {
"async": "^2.5.0",
"commander": "^2.9.0",
"leveldown": "^2.0.0",
"merge": "^1.2.0",
"mkdirp": "^0.5.1",
"readable-stream": "^2.3.3"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"gh-pages": "^0.11.0",
"ink-docstrap": "bookchin/docstrap",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.0",
"jshint": "^2.9.3",
"memdown": "^1.2.0",
"mocha": "^3.0.2",
"noisegen": "^1.0.0",
"proxyquire": "^1.7.10",
"rimraf": "^2.5.4",
"sinon": "^1.17.5"
}
}