-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "nodejs-light_rpc",
"version": "0.2.0",
"description": "Simple RPC server/client based on NodeJS native 'net' lib sockets.",
"keywords": [
"rpc"
],
"maintainers": [
{
"name": "Lakotko Roman",
"email": "romulka@gmail.com"
}
],
"bugs": {
"url": "https://github.com/romulka/nodejs-light_rpc/issues"
},
"licenses": [
{
"type": "BSD",
"url": "http://opensource.org/licenses/bsd-license.php"
}
],
"repositories": [
{
"type": "git",
"url": "git://github.com/romulka/nodejs-light_rpc.git"
}
],
"main": "./index",
"dependencies": {},
"devDependencies": {
"seq": "0.3.5"
},
"engines": { "node": ">=0.4.0" },
"eslintConfig": {
"ecmaFeatures": {
"forOf": true
},
"rules": {
"quotes": [1, "single"],
"no-underscore-dangle": false,
"no-use-before-define": false
},
"env": {
"node": true
}
}
}