forked from pelias/spatial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.76 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
{
"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/start",
"scripts": {
"postinstall": "npm i better-sqlite3@latest --sqlite3=$PWD/amalgamation/sqlite-amalgamation-3280000",
"validate": "npm ls",
"prune": "npm prune",
"build": "docker build -t 'pelias/spatial' .",
"test": "./bin/test",
"start": "node server/http.js",
"server": "node server/http.js",
"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": {
"@turf/buffer": "^5.1.5",
"better-sqlite3": "^5.4.0",
"csv-parse": "^4.4.3",
"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.11",
"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.7",
"yargs": "^13.2.4"
},
"devDependencies": {
"difflet": "^1.0.1",
"glob": "^7.1.4",
"precommit-hook": "^3.0.0",
"semver": "^6.1.2",
"standard": "^12.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.10.2"
},
"standard": {
"ignore": [
"/server/demo"
]
},
"pre-commit": [
"format_check",
"lint",
"validate",
"test"
],
"release": {
"branch": "master",
"success": []
}
}