-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "mongo-es",
"version": "3.4.4",
"description": "A MongoDB to Elasticsearch connector",
"keywords": [
"mongodb",
"elasticsearch",
"connector",
"etl"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"typings": "dist/src/index.d.ts",
"scripts": {
"start": "node dist/src/main.js",
"compile": "tsc",
"build": "npm run clean && npm run compile",
"dev": "npm run clean && tsc -w & NODE_ENV=dev nodemon dist/src/main.js",
"test": "npm run compile && ava dist/test/*.test.js",
"clean": "rm -rf dist",
"purge": "rm -rf package-lock.json node_modules && npm run clean",
"format": "prettier --config .prettierrc --write '**/*'",
"prepublishOnly": "npm run build"
},
"bin": {
"mongo-es": "dist/src/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jike-engineering/mongo-es.git"
},
"author": "",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/jike-engineering/mongo-es/issues"
},
"homepage": "https://github.com/jike-engineering/mongo-es#readme",
"dependencies": {
"elasticsearch": "16.7.1",
"lodash": "4.17.21",
"mongodb": "3.6.0",
"rx": "4.1.0"
},
"devDependencies": {
"@types/elasticsearch": "5.0.36",
"@types/lodash": "4.14.159",
"@types/mongodb": "3.5.26",
"@types/rx": "4.1.2",
"ava": "3.11.1",
"husky": "4.2.5",
"nodemon": "2.0.4",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"source-map-support": "0.5.19",
"typescript": "3.9.7"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}