-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.16 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
{
"name": "mongostic",
"version": "0.1.0",
"description": "This library is meant to be used as a synchronization tool between mongodb and elasticsearch",
"main": "index.js",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"scripts": {
"start": "nodemon",
"debug": "nodemon --inspect",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ninja-labs-tech/mongostic.git"
},
"keywords": [
"mongodb",
"elasticsearch",
"synchronization",
"sync",
"mongo"
],
"author": "Ninja Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/ninja-labs-tech/mongostic/issues"
},
"homepage": "https://github.com/ninja-labs-tech/mongostic#readme",
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.1",
"husky": "^3.0.3",
"jest": "^24.8.0",
"lint-staged": "^9.2.1",
"nodemon": "^1.19.1"
},
"dependencies": {
"debug": "^4.1.1",
"elasticsearch": "^16.3.0",
"mongodb": "^3.3.2"
}
}