-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 1.78 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "pelias-spatial",
"version": "0.0.0-development",
"author": "pelias",
"description": "Pelias Geometry Service",
"homepage": "https://github.com/pelias/spatial",
"license": "MIT",
"main": "index.js",
"bin": "./bin/spatial",
"scripts": {
"postinstall": "./bin/compile_better_sqlite3",
"validate": "npm ls",
"prune": "npm prune",
"build": "docker build -t 'pelias/spatial' .",
"test": "./bin/test",
"coverage": "./bin/coverage",
"env_check": "./bin/env_check",
"start": "./bin/start",
"server": "./bin/start",
"format_check": "./node_modules/standard/bin/cmd.js",
"format_fix": "./node_modules/standard/bin/cmd.js --fix",
"lint": "jshint ."
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/spatial.git"
},
"bugs": {
"url": "https://github.com/pelias/spatial/issues"
},
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@mapbox/polyline": "^1.1.1",
"@turf/buffer": "^5.1.5",
"better-sqlite3": "^7.0.1",
"bindings": "^1.5.0",
"csv-parse": "^4.8.2",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"handlebars-helpers": "^0.10.0",
"iso-639-3": "^1.2.0",
"locale": "^0.1.0",
"lodash": "^4.17.15",
"morgan": "^1.9.1",
"pelias-logger": "^1.4.1",
"split2": "^3.1.1",
"through2": "^3.0.1",
"turf-point": "^2.0.1",
"wkx": "^0.4.8",
"yargs": "^13.3.0"
},
"devDependencies": {
"difflet": "^1.0.1",
"glob": "^7.1.6",
"precommit-hook": "^3.0.0",
"semver": "^6.3.0",
"standard": "^12.0.1",
"tap": "^14.10.6"
},
"standard": {
"ignore": [
"/server/demo"
]
},
"pre-commit": [
"format_check",
"lint",
"test"
],
"release": {
"branch": "master",
"success": []
}
}