forked from goldfire/democracy.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.61 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.61 KB
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
{
"name": "@cloudelements/democracy",
"version": "4.3.0",
"description": "Node.js unicast discovery, master-slave elections and pub/sub.",
"homepage": "https://github.com/cloud-elements/democracy.js",
"keywords": [
"democracy",
"consensus",
"master",
"master-slave",
"leader",
"unicast",
"udp",
"discovery",
"pubsub"
],
"author": "James Simpson <james@goldfirestudios.com> (http://goldfirestudios.com)",
"repository": {
"type": "git",
"url": "git://github.com/cloud-elements/democracy.js.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint ./lib/",
"dev": "nodemon --ignore dist --exec 'npm run build && npm run concurrent-examples'",
"concurrent-examples": "concurrently -c blue,green,red -n 12345,12346,12347 'node ./examples/test.js 12345' 'node ./examples/test.js 12346' 'node ./examples/test.js 12347'",
"release": "VERSION=`printf 'v' && node -e 'console.log(require(\"./package.json\").version)'` && git tag $VERSION && git push && git push origin $VERSION && npm run build && npm publish"
},
"main": "./dist/democracy.js",
"types": "./dist/democracy.d.ts",
"license": "MIT",
"dependencies": {
"nanoid": "^3.3.8"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"concurrently": "^6.2.1",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-plugin-import": "2.29.1",
"nodemon": "^2.0.12",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=18"
}
}