forked from pelias/parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.36 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
{
"name": "pelias-parser",
"version": "0.0.0-development",
"author": "pelias",
"description": "Pelias parsing library",
"homepage": "https://github.com/pelias/parser",
"license": "MIT",
"main": "server/http.js",
"scripts": {
"units": "./bin/test unit",
"funcs": "./bin/test func",
"format_check": "./node_modules/standard/bin/cmd.js",
"format_fix": "./node_modules/standard/bin/cmd.js --fix",
"server": "node ./server/http.js",
"test": "./bin/test",
"ci": "./bin/test",
"lint": "jshint .",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/parser.git"
},
"keywords": [
"pelias",
"parser"
],
"bugs": {
"url": "https://github.com/pelias/parser/issues"
},
"engines": {
"node": ">= 10.0.0"
},
"dependencies": {
"cluster": "^0.7.7",
"express": "^4.16.4",
"pluralize": "^8.0.0",
"remove-accents": "^0.4.2",
"stringbuffer": "^1.0.0"
},
"devDependencies": {
"better-sqlite3": "^7.4.1",
"chalk": "^2.4.2",
"csv-parse": "^4.4.1",
"deep-eql": "^4.0.0",
"glob": "^7.1.3",
"precommit-hook": "^3.0.0",
"standard": "^12.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.4.0"
},
"pre-commit": [
"format_check",
"lint",
"validate",
"test"
],
"release": {
"branch": "master",
"success": []
}
}