-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.85 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
88
{
"name": "feathers-forward",
"version": "2.0.0",
"description": "A Feathers service addapter for forwarding messages to another feathers application",
"license": "MIT",
"engines": {
"node": ">= 6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/touch4it/feathers-forward.git"
},
"bugs": {
"url": "https://github.com/touch4it/feathers-forward/issues"
},
"homepage": "https://github.com/touch4it/feathers-forward",
"author": "Touch4IT, s.r.o. <[email protected]> (https://touch4it.com/)",
"main": "lib/",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "xo lib/",
"test": "npm run lint"
},
"contributors": [
"Dušan Matejka <[email protected]>"
],
"keywords": [
"feathers",
"feathers-plugin",
"service",
"forward"
],
"xo": {
"envs": [
"node",
"mocha"
],
"esnext": true,
"globals": [
"sails",
"async",
"_"
],
"rules": {
"camelcase": "off",
"no-multi-spaces": [
"error",
{
"ignoreEOLComments": true
}
],
"spaced-comment": [
"error",
"always",
{
"block": {
"exceptions": [
"*"
],
"markers": [
"!"
]
}
}
],
"unicorn/explicit-length-check": "off",
"unicorn/filename-case": "off"
},
"space": true
},
"dependencies": {
"@feathersjs/authentication": "^2.1.15",
"@feathersjs/errors": "^3.3.6",
"axios": "^0.18.0",
"underscore": "^1.9.1",
"url-join": "^4.0.0"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"xo": "^0.23.0"
}
}