-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.13 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
{
"name": "@telios/nebula-drive",
"version": "5.3.2",
"description": "Real-time distributed file and data storage.",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test_sdk tape tests/*.test.js | tap-spec",
"semantic-release": "semantic-release",
"commit": "cz",
"debug": "cross-env NODE_ENV=test_sdk tape tests/drive.test.js | tap-spec --nolazy --debug-brk=5858"
},
"repository": {
"type": "git",
"url": "https://github.com/Telios-org/nebula-drive.git"
},
"author": "Hexadecibal",
"license": "MIT",
"bugs": {
"url": "https://github.com/Telios-org/nebula-drive/issues"
},
"homepage": "https://github.com/Telios-org/nebula-drive",
"dependencies": {
"@geut/hypercore-promise": "^2.1.1",
"async": "^3.2.0",
"autobase": "1.0.0-alpha.1",
"blakejs": "^1.1.0",
"bson": "^4.5.0",
"chokidar": "^3.5.1",
"dat-encoding": "^5.0.1",
"hyperbee": "^1.6.3",
"hypercore": "10.0.0-alpha.13",
"hyperswarm": "^3.0.1",
"is-online": "^9.0.1",
"memorystream": "^0.3.1",
"pump": "^3.0.0",
"random-access-memory": "^3.1.1",
"rimraf": "^3.0.2",
"sodium-native": "^3.2.0",
"uuid": "^8.2.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/gitlab": "^6.0.9",
"@semantic-release/npm": "^7.1.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.0.1",
"del": "^6.0.0",
"husky": "^6.0.0",
"semantic-release": "^17.4.2",
"tap-spec": "^2.2.2",
"tape": "^5.2.2",
"tape-promise": "^4.0.0"
},
"directories": {
"lib": "lib",
"test": "tests"
},
"keywords": [
"telios",
"decentralized",
"distributed",
"file",
"sharing",
"drive",
"storage",
"p2p",
"peer-to-peer",
"hypercore",
"hypercore-protocol",
"hyperdrive",
"hyperswarm"
],
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}