forked from kmiura-1002/elasticsearch-index-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.43 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
{
"name": "elasticsearch-index-migrate",
"description": "This software is a command line tool for version control and mapping changes of Elasticsearch mappings.",
"version": "0.6.0",
"author": "kmiura @kmiura-1002",
"private": false,
"bin": {
"elasticsearch-index-migrate": "./bin/run"
},
"bugs": "https://github.com/kmiura-1002/elasticsearch-index-migrate/issues",
"dependencies": {
"@oclif/command": "^1.6.1",
"@oclif/config": "^1.15.1",
"@oclif/plugin-help": "^3.0.1",
"@types/lodash.merge": "^4.6.6",
"cli-ux": "^5.4.6",
"date-fns": "^2.13.0",
"es6": "npm:@elastic/elasticsearch@^6.8.8",
"es7": "npm:@elastic/elasticsearch@^7.7.1",
"inversify": "^5.0.1",
"jsondiffpatch": "^0.4.1",
"lodash.merge": "^4.6.2",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"semver": "^7.3.2",
"tslib": "^2.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@types/inversify": "^2.0.33",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"@types/power-assert": "^1.5.3",
"@types/semver": "^7.2.0",
"@types/sinon": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.0.0",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"globby": "^11.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.3",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"power-assert": "^1.6.1",
"sinon": "^9.0.2",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
},
"engines": {
"node": ">=10.15.0",
"npm": ">=6.9"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/kmiura-1002/elasticsearch-index-migrate",
"keywords": [
"oclif",
"elasticsearch",
"migration",
"cli"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "elasticsearch-index-migrate",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "kmiura-1002/elasticsearch-index-migrate",
"scripts": {
"lint": "eslint -c .eslintrc 'src/**/*.ts'",
"format": "prettier --write \"{src/**/*.ts,test/**/*.ts}\"",
"postpack": "rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme",
"docker:build": "docker build -t kmiura1002/elasticsearch-index-migrate:`npx -c 'echo \"$npm_package_version\"'` ./docker",
"readme": "oclif-dev readme"
},
"types": "lib/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint",
"prettier --write",
"git add"
]
}
}