forked from pelias/schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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": "pelias-schema",
"version": "0.0.0-development",
"author": "pelias",
"description": "Elasticsearch schema files and tooling for Pelias",
"homepage": "https://github.com/pelias/schema",
"license": "MIT",
"main": "schema.js",
"scripts": {
"test": "./bin/test",
"integration": "./bin/integration",
"create_index": "node scripts/create_index",
"drop_index": "node scripts/drop_index",
"reset_type": "node scripts/reset_type",
"update_settings": "node scripts/update_settings",
"travis": "npm run test && npm run integration"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/schema.git"
},
"keywords": [
"pelias",
"schema"
],
"bugs": {
"url": "https://github.com/pelias/schema/issues"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=1.4.3",
"elasticsearch": ">=1.1.1"
},
"dependencies": {
"colors": "^1.1.2",
"elasticsearch": "^15.0.0",
"joi": "^13.1.0",
"lodash.merge": "^4.6.0",
"pelias-config": "^3.0.2"
},
"devDependencies": {
"difflet": "^1.0.1",
"elastictest": "^1.2.0",
"proxyquire": "^2.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.5.0"
},
"pre-commit": [],
"release": {
"branch": "production",
"success": []
}
}