-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.74 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
{
"name": "@myelastic/indexer",
"version": "1.5.4",
"description": "elasticsearch indexer for mysql",
"main": "lib/indexer.js",
"scripts": {
"watch": "nodemon --watch 'src/**/*' -e ts --exec yarn run build",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepare": "npm run build",
"lint": "tslint -p tsconfig.json",
"myelastic": "ts-node src/lib/cli/myelastic.ts",
"postinstall": "node postinstall.js"
},
"keywords": [
"mysql",
"mysql to elasticsearch",
"mysql elasticsearch indexer",
"elasticsearch",
"elastic",
"bulk",
"indexing",
"kibana",
"mapping",
"search",
"client",
"index"
],
"types": "lib/indexer.d.ts",
"dependencies": {
"@elastic/elasticsearch": "^7.3.0",
"dotenv": "^8.2.0",
"find-config": "^1.0.0",
"fs": "0.0.1-security",
"humanize-duration": "^3.20.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"mongodb": "^3.5.7",
"mysql": "^2.17.1",
"yargs": "^14.0.0"
},
"devDependencies": {
"@types/mongodb": "^3.5.16",
"@types/mysql": "^2.15.10",
"@types/node": "^12.7.5",
"@types/yargs": "^13.0.2",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.5",
"prettier": "^1.18.2",
"ts-node": "8.1.0",
"tslint": "5.16.0",
"typescript": "3.4.5",
"yarn": "^1.17.3"
},
"author": "Anthony Martin",
"repository": {
"type": "git",
"url": "https://github.com/anthonymartin/myelastic"
},
"license": "MIT",
"bin": {
"myelastic": "./lib/cli/myelastic.js"
},
"husky": {
"hooks": {
"post-commit": "(git-branch-is develop && HUSKY_SKIP_HOOKS=1 yarn version --patch)"
}
}
}