-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
55
56
57
{
"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 check-dependencies && npm run test",
"check-dependencies": "node_modules/.bin/npm-check --production"
},
"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": "^14.0.0",
"joi": "^13.1.0",
"lodash.merge": "^4.6.0",
"pelias-config": "2.14.0"
},
"devDependencies": {
"difflet": "^1.0.1",
"elastictest": "^1.2.0",
"npm-check": "git://github.com/orangejulius/npm-check.git#disable-update-check",
"proxyquire": "^2.0.0",
"semantic-release": "^15.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.5.0"
},
"pre-commit": [
"check-dependencies"
],
"release": {
"success": []
}
}