-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.24 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
{
"name": "@lastcallmedia/elasticsearch-migrate",
"version": "1.0.0",
"description": "Migration framework for NodeJS/Elasticsearch.",
"main": "index.js",
"engines": {
"node": ">=8"
},
"bin": {
"elasticsearch-migrate": "bin/elasticsearch-migrate"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest"
},
"author": {
"name": "Rob Bayliss",
"email": "rob@lastcallmedia.com",
"url": "https://lastcallmedia.com"
},
"bugs": {
"url": "https://github.com/LastCallMedia/elasticsearch-migrate/issues"
},
"repository" : {
"type" : "git",
"url": "ssh://git@github.com/LastCallMedia/elasticsearch-migrate.git"
},
"homepage": "https://github.com/LastCallMedia/elasticsearch-migrate#readme",
"license": "MIT",
"dependencies": {
"glob": "^7.1.6",
"yargs": "^15.0.2"
},
"devDependencies": {
"@elastic/elasticsearch": "^7.5.0",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.24",
"@types/node": "^13.1.0",
"jest": "^24.9.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
},
"peerDependencies": {
"@elastic/elasticsearch": "^7.5.0"
},
"jest": {
"preset": "ts-jest/presets/default",
"roots": [
"<rootDir>/src"
]
}
}