forked from josx/ra-data-feathers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
164 lines (164 loc) · 3.97 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "aor-feathers-client",
"version": "0.8.0",
"description": "A feathers client for admin-on-rest",
"main": "lib/index.js",
"scripts": {
"pretest": "npm run build",
"test": "npm run coverage",
"build": "make build",
"clean": "make clean",
"prepublish": "make build",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"mocha": "env DEBUG=aor-feathers-client:* mocha"
},
"files": [
"LICENSE",
"*.md",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/josx/aor-feathers-client.git"
},
"keywords": [
"reactjs",
"react",
"rest",
"feathers",
"local"
],
"author": "Jose Luis Di Biase",
"license": "MIT",
"bugs": {
"url": "https://github.com/josx/aor-feathers-client/issues"
},
"homepage": "https://github.com/josx/aor-feathers-client#readme",
"peerDependencies": {
"admin-on-rest": "^1.0.1",
"debug": "^3.0.0",
"feathers-client": ">=1.9.0",
"jwt-decode": "^2.2.0",
"object-diff": "^0.0.4"
},
"devDependencies": {
"admin-on-rest": "^1.0.1",
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"istanbul": "^0.4.5",
"jwt-decode": "^2.2.0",
"mocha": "^3.4.1",
"sinon": "^2.2.0",
"object-diff": "^0.0.4"
},
"contributors": [
{
"name": "Igor Berlenko",
"email": null,
"url": "https://github.com/7flash",
"contributions": 2,
"additions": 4,
"deletions": 3,
"hireable": null
},
{
"name": "Dream",
"email": null,
"url": "https://github.com/dreamrace",
"contributions": 2,
"additions": 2,
"deletions": 0,
"hireable": null
},
{
"name": "Ryan Harmuth",
"email": null,
"url": "https://github.com/Ryanthegiantlion",
"contributions": 1,
"additions": 4,
"deletions": 0,
"hireable": true
},
{
"name": "Lijo Antony",
"email": null,
"url": "https://github.com/lijoantony",
"contributions": 3,
"additions": 22,
"deletions": 4,
"hireable": true
},
{
"name": "Amr Noman",
"email": null,
"url": "https://github.com/AmrN",
"contributions": 4,
"additions": 239,
"deletions": 7,
"hireable": null
},
{
"name": "Tomasz Bak",
"email": null,
"url": "https://github.com/tb",
"contributions": 2,
"additions": 187,
"deletions": 127,
"hireable": null
},
{
"name": "José Luis Di Biase",
"email": null,
"url": "https://github.com/josx",
"contributions": 36,
"additions": 1003,
"deletions": 262,
"hireable": true
},
{
"name": "Fabien Champigny",
"email": null,
"url": "https://github.com/fonzarely",
"contributions": 6,
"additions": 2507,
"deletions": 19,
"hireable": null
},
{
"name": "Wédney Yuri",
"email": null,
"url": "https://github.com/wedneyyuri",
"contributions": 2,
"additions": 4,
"deletions": 3,
"hireable": true
},
{
"name": "Fernando Navarro",
"email": null,
"url": "https://github.com/kfern",
"contributions": 1,
"additions": 63,
"deletions": 1,
"hireable": null
},
{
"name": "tony kerz",
"email": null,
"url": "https://github.com/tony-kerz",
"contributions": 3,
"additions": 251,
"deletions": 100,
"hireable": null
}
]
}