forked from hyperswarm/hypersign
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 852 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 852 Bytes
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
{
"name": "@dswarm/dwebsign",
"version": "1.0.0",
"description": "Utility methods related to public key cryptography to be used with distributed mutable storage.",
"main": "index.js",
"dependencies": {
"sodium-native": "^3.1.1",
"sodium-universal": "^3.0.4"
},
"devDependencies": {
"bencode": "^2.0.1",
"standard": "^13.1.0",
"tap": "^14.5.0"
},
"scripts": {
"test": "tap --no-esm -R classic test/*.test.js && standard --fix",
"cov": "tap --no-esm -R classic --100 test/*.test.js",
"ci": "standard && npm run cov"
},
"repository": {
"type": "git",
"url": "https://github.com/dwebprotocol/dwebsign.git"
},
"author": "PeepsLabs <peepslabs@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwebprotocol/dwebsign/issues"
},
"homepage": "https://dwebx.org"
}