forked from dashersw/cote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.05 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "cote",
"version": "0.17.1",
"keywords": [
"microservices",
"zero-configuration",
"zero-conf",
"mesh",
"network",
"auto discovery",
"scalable",
"fault-tolerant"
],
"description": "A Node.js library for building zero-configuration microservices.",
"scripts": {
"build": "babel src --presets babel-preset-es2015 -D -d dist -s",
"clean": "rm -rf dist",
"coverage": "nyc -x=\"**/examples/*\" -x=\"**/*balanced*.js\" -x=\"**/test/*.js\" -x=\"**/lib/*.js\" report",
"lint": "eslint src test",
"lint-fix": "eslint --fix src test",
"prepublish": "npm run build",
"test": "NODE_ENV=dev nyc -x=\"**/examples/*\" -x=\"**/*balanced*.js\" -x=\"**/test/*.js\" -x=\"**/lib/*.js\" ava --timeout=60000"
},
"author": {
"name": "Armagan Amcalar",
"email": "armagan@amcalar.com"
},
"main": "dist/index.js",
"license": "MIT",
"repository": "dashersw/cote",
"engines": {
"node": ">=v4.0.0"
},
"dependencies": {
"@dashersw/axon": "2.0.5",
"@dashersw/node-discover": "^1.0.4",
"charm": "1.0.2",
"colors": "1.3.0",
"eventemitter2": "5.0.1",
"lodash": "4.17.10",
"portfinder": "1.0.13",
"socket.io": "2.1.1",
"uuid": "^3.2.1"
},
"devDependencies": {
"async": "^2.6.1",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"commander": "2.15.1",
"coveralls": "^3.0.1",
"eslint": "^5.0.0",
"eslint-config-google": "^0.9.1",
"humanize-number": "0.0.2",
"nyc": "^12.0.2",
"randomstring": "^1.1.5",
"request": "^2.87.0",
"sinon": "^6.0.1",
"socket.io-client": "2.1.1"
},
"eslintConfig": {
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": 6
},
"extends": [
"google"
],
"rules": {
"require-jsdoc": "off",
"new-cap": "off",
"guard-for-in": "off",
"object-curly-spacing": [
"error",
"always"
],
"max-len": [
"error",
{
"code": 120
}
]
}
}
}