This repository has been archived by the owner on May 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
70 lines (70 loc) · 1.66 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
{
"name": "notp",
"version": "2.0.1",
"description": "Distributed systems library for gossip protocols, consistent hash rings, and vector clocks.",
"main": "index.js",
"scripts": {
"test": "grunt",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/azuqua/notp.git"
},
"engines": {
"node": ">=6.9.1"
},
"author": "Kevin Wilson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/azuqua/notp/issues"
},
"keywords": [
"consistent hashing",
"vector clocks",
"gossip protocol",
"distributed",
"decentralized",
"communication",
"IPC",
"cluster",
"full-mesh topology",
"actor model"
],
"bin": {
"ncl": "./bin/cli.js"
},
"homepage": "https://github.com/azuqua/notp",
"dependencies": {
"async": "^1.5.2",
"debug": "^2.2.0",
"functional-red-black-tree": "^1.0.1",
"lodash": "^4.17.15",
"lru-cache": "^4.1.1",
"microtime": "^2.1.2",
"node-ipc": "^8.9.3",
"shortid": "^2.2.8",
"uuid": "^3.0.1",
"vorpal": "^1.11.4",
"yargs": "^7.0.2"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.12.0",
"docdash": "^0.4.0",
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.0.0",
"grunt-jsdoc": "^2.1.0",
"grunt-jsdoc-to-markdown": "^3.0.0",
"grunt-mocha-test": "^0.12.7",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"node-yaml-config": "*",
"sinon": "^1.17.5",
"supertest": "^2.0.0"
},
"directories": {
"test": "test"
}
}