-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 869 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 869 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
31
32
33
34
35
36
37
{
"name": "kepler-keys",
"version": "1.0.0",
"description": "Kepler's Javascript-based Cryptography Library For The Bench Network.",
"main": "index.js",
"scripts": {
"start": "onchange -i *.js -- npm test -s",
"test": "node tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benchlab/KeplerKeys.git"
},
"keywords": [
"bench-network",
"bench-crypto",
"bench-cryptography",
"bench-signatures",
"ed25519",
"bench-identity",
"kepler-service"
],
"author": "Jared Rice Sr.",
"license": "BENCH",
"bugs": {
"url": "https://github.com/benchlab/KeplerKeys/issues"
},
"homepage": "https://github.com/benchlab/KeplerKeys#readme",
"devDependencies": {
"onchange": "^3.2.1",
"tape": "^4.8.0"
},
"dependencies": {
"bs58": "^4.0.1",
"tweetnacl": "^1.0.0"
}
}