-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.48 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
{
"name": "elasticsearch-migrate",
"version": "0.0.13-alpha",
"description": "Tool to run migrations to create/modify Elasticsearch index mapping.",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"coverage": "nyc npm run test",
"coveradge": "nyc --reporter coveradge npm run test",
"prod-build": "rm -rf lib && tsc --project tsconfig.production.json",
"test": "ts-node tests/test.ts",
"watch-test": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pavanbellamkonda/elasticsearch-migrate.git"
},
"keywords": [
"elasticsearch",
"migrations"
],
"author": "Pavan Bellamkonda",
"license": "MIT",
"bugs": {
"url": "https://github.com/pavanbellamkonda/elasticsearch-migrate/issues"
},
"homepage": "https://github.com/pavanbellamkonda/elasticsearch-migrate#readme",
"devDependencies": {
"@elastic/elasticsearch": "^7.13.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/jasmine": "^3.8.1",
"@types/node": "^12.20.17",
"coveradge": "^0.7.0",
"is-reachable": "^5.1.0",
"jasmine": "^3.8.0",
"jasmine-reporters": "^2.4.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.4.0",
"nodemon": "^2.0.12",
"nyc": "^15.1.0",
"source-map-support": "^0.5.19",
"typescript": "^4.3.5"
},
"files": [
"lib",
"index.d.ts",
"LICENSE",
"README.md"
],
"types": "./index.d.ts",
"peerDependencies": {
"@elastic/elasticsearch": "7.x"
}
}