-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1006 Bytes
/
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
{
"name": "@consento/hlc",
"version": "2.1.0",
"description": "A Hybrid Logical Clock implementation that comes with a codec to store it as Uint8Array (compatible to codecs)",
"type": "commonjs",
"main": "index.js",
"scripts": {
"lint": "standard",
"unit": "node test.js",
"test": "npm run lint && npm run cover",
"cover": "nyc npm run unit",
"render-faq": "./faq/render"
},
"keywords": [
"hybrid",
"logical",
"clock",
"hlc",
"vector",
"lambort"
],
"author": "Martin Heidegger <[email protected]>",
"license": "MIT",
"devDependencies": {
"fresh-tape": "^5.0.4",
"nyc": "^15.1.0",
"standard": "^16.0.3"
},
"dependencies": {
"bigint-time": "^1.0.2",
"longfn": "^1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/consento-org/hlc.git"
},
"bugs": {
"url": "https://github.com/consento-org/hlc/issues"
},
"homepage": "https://github.com/consento-org/hlc#readme"
}