-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
69 lines (69 loc) · 2.28 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
{
"name": "seneca-mesh",
"version": "1.5.0",
"description": "Mesh your Seneca.js microservices together - no more service discovery!",
"main": "mesh.js",
"license": "MIT",
"author": "Richard Rodger (http://richardrodger.com)",
"contributors": [
"Richard Rodger (http://richardrodger.com)",
"Emer Rutherford (https://github.com/eeswr)",
"jaamison (https://github.com/jaamison)",
"Dean McDonnell (https://github.com/mcdonnelldean)",
"Shane Lacey (https://github.com/shanel262)",
"Mihai Dima (https://github.com/mihaidma)"
],
"scripts": {
"test": "lab -v -t 80 -I URL,URLSearchParams,BigUint64Array,BigInt64Array,BigInt",
"coveralls": "lab -s -P test -r lcov -I URL,URLSearchParams | coveralls",
"coverage": "lab -v -P test -t 80 -r html -I URL,URLSearchParams > coverage.html",
"prettier": "prettier --write --no-semi --single-quote *.js test/*.js",
"clean": "rm -rf node_modules package-lock.json yarn.lock",
"reset": "npm run clean && npm i && npm test",
"repo-tag": "REPO_VERSION=`node -e \"console.log(require('./package').version)\"` && echo TAG: v$REPO_VERSION && git commit -a -m v$REPO_VERSION && git push && git tag v$REPO_VERSION && git push --tags;",
"repo-publish": "npm run clean && npm i --registry http://registry.npmjs.org && npm run repo-publish-quick",
"repo-publish-quick": "npm run prettier && npm test && npm run repo-tag && npm publish --access public --registry=http://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "https://github.com/senecajs/seneca-mesh"
},
"keywords": [
"seneca",
"plugin",
"transport",
"load",
"balance",
"client"
],
"engines": {
"node": ">=8"
},
"dependencies": {
"ip": "^1.1.5",
"jsonic": "^0.3.1",
"lodash": "^4.17.15",
"nid": "^1.1.0",
"node-discover": "^1.1.3",
"optioner": "^5.0.1",
"rif": "^0.3.0",
"sneeze": "^3.0.0"
},
"devDependencies": {
"@hapi/code": "^8.0.1",
"@hapi/hapi": "^19.1.1",
"@hapi/lab": "^22.0.4",
"@seneca/repl": "^2.2.0",
"color": "^3.1.2",
"coveralls": "^3.1.0",
"prettier": "^2.0.5",
"seneca": "^3.20.6",
"seneca-balance-client": "^1.2.0",
"seneca-consul-registry": "^0.2.0"
},
"files": [
"README.md",
"LICENSE",
"mesh.js"
]
}