forked from pelias/schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 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
{
"name": "pelias-schema",
"version": "0.0.0-semantic-release",
"author": "mapzen",
"description": "Elasticsearch schema files and tooling for Pelias",
"homepage": "https://github.com/pelias/schema",
"license": "MIT",
"main": "schema.js",
"scripts": {
"test": "node test/run.js | tap-spec",
"integration": "node integration/run.js | tap-spec",
"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",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/schema.git"
},
"keywords": [
"pelias",
"schema"
],
"bugs": {
"url": "https://github.com/pelias/schema/issues"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=1.4.3",
"elasticsearch": ">=1.1.1"
},
"dependencies": {
"colors": "^1.1.2",
"elasticsearch": "^12.0.1",
"mergeable": "latest",
"pelias-config": "2.3.1"
},
"devDependencies": {
"difflet": "^1.0.1",
"elastictest": "^1.2.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.0",
"semantic-release": "^6.3.2"
}
}