-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 971 Bytes
/
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
{
"name": "loopback-sync-indices",
"version": "1.0.2",
"description": "A function that synchronizes indexes between loopback models and databases",
"main": "index.js",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"test": "echo \"Tests to be added\" && exit 0"
},
"keywords": [
"loopback",
"mongo",
"index"
],
"author": "Mohamed Gamal <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.15",
"rxjs": "^6.5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/gemyero/loopback-sync-indices.git"
},
"homepage": "https://github.com/gemyero/loopback-sync-indices",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"husky": "^4.2.3",
"lint-staged": "^10.0.8"
}
}