-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 962 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 962 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": "urkel",
"version": "1.0.3",
"description": "Cryptographically provable database",
"keywords": [
"net",
"tcp"
],
"license": "MIT",
"repository": "git://github.com/handshake-org/urkel.git",
"homepage": "https://github.com/handshake-org/urkel",
"bugs": {
"url": "https://github.com/handshake-org/urkel/issues"
},
"author": "Christopher Jeffrey <chjjeffrey@gmail.com>",
"main": "./lib/urkel.js",
"scripts": {
"lint": "eslint lib/ bench/ test/ || exit 0",
"lint-file": "eslint",
"lint-ci": "eslint lib/ bench/ test/",
"test": "bmocha --reporter spec test/*-test.js",
"test-file": "bmocha --reporter spec",
"test-ci": "nyc --reporter lcov bmocha -- --reporter spec test/*.js"
},
"dependencies": {
"bfile": "~0.2.1",
"bmutex": "~0.1.6",
"bsert": "~0.0.10"
},
"devDependencies": {
"bcrypto": "^5.4.0",
"bmocha": "^2.1.0"
},
"engines": {
"node": ">=8.0.0"
}
}