-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
38 lines (38 loc) · 988 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
{
"name": "democracy",
"version": "4.0.0",
"description": "Node.js unicast discovery, master-slave elections and pub/sub.",
"homepage": "https://github.com/goldfire/democracy.js",
"keywords": [
"democracy",
"consensus",
"master",
"master-slave",
"leader",
"unicast",
"udp",
"discovery",
"pubsub"
],
"author": "James Simpson <[email protected]> (http://goldfirestudios.com)",
"repository": {
"type": "git",
"url": "git://github.com/goldfire/democracy.js.git"
},
"scripts": {
"release": "VERSION=`printf 'v' && node -e 'console.log(require(\"./package.json\").version)'` && git tag $VERSION && git push && git push origin $VERSION && npm publish"
},
"main": "index.js",
"license": "MIT",
"dependencies": {
"nanoid": "3.3.7"
},
"devDependencies": {
"eslint": "5.9.*",
"eslint-config-airbnb-base": "13.1.*",
"eslint-plugin-import": "2.14.*"
},
"engines": [
"node >= 16.0.0"
]
}