-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
40 lines (40 loc) · 936 Bytes
/
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
{
"name": "json-schema-to-es-mapping",
"version": "0.3.6",
"main": "src/index.js",
"description": "Generate Elastic Search mappings from JSON Schema",
"license": "MIT",
"author": "Kristian Mandrup <[email protected]>",
"homepage": "https://github.com/kristianmandrup/json-schema-to-es-mapping#readme",
"repository": {
"type": "git",
"url": "https://github.com/kristianmandrup/json-schema-to-es-mapping.git"
},
"bugs": {
"url": "https://github.com/kristianmandrup/json-schema-to-es-mapping/issues",
"email": "[email protected]"
},
"devDependencies": {
"jest": "^23.0.0"
},
"keywords": [
"elastic",
"search",
"elasticsearch",
"elastic-search",
"json",
"json-schema",
"schema",
"convert",
"build",
"builder",
"generator"
],
"scripts": {
"test": "jest"
},
"dependencies": {
"dot-prop": "^5.0.0",
"inflection": "^1.12.0"
}
}