-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 1.61 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
{
"name": "pelias-fuzzy-tester",
"version": "0.0.0-development",
"description": "A testing suite by Mapzen with fuzzy testing ability",
"keywords": [
"tests",
"api",
"acceptance",
"regression",
"continuous-integration"
],
"author": "mapzen",
"main": "index.js",
"scripts": {
"units": "node test/test | tap-dot",
"test": "npm run units",
"ci": "npm test",
"lint": "jshint .",
"validate": "npm ls"
},
"bin": {
"fuzzy-tester": "./bin/fuzzy-tester"
},
"dependencies": {
"colors": "^1.3.0",
"commander": "^4.0.0",
"deep-diff": "^1.0.0",
"fj-compose": "^1.1.0",
"handlebars": "^4.0.5",
"haversine": "^1.0.0",
"is-object": "^1.0.1",
"juice": "^6.0.0",
"lodash": "^4.5.1",
"nodemailer": "^6.3.1",
"nodemailer-ses-transport": "^1.5.1",
"pelias-config": "^4.0.0",
"pelias-logger": "^1.5.0",
"request": "^2.55.0",
"require-dir": "^1.0.0",
"sanitize-filename": "^1.3.0",
"sync-request": "^6.0.0"
},
"devDependencies": {
"csv-parse": ">=1.0.0",
"jshint": "^2.6.3",
"precommit-hook": "^3.0.0",
"proj4": "^2.3.12",
"tap-dot": "^2.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.0",
"through2": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/fuzzy-tester"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pelias/fuzzy-tester/issues"
},
"homepage": "https://github.com/pelias/fuzzy-tester",
"pre-commit": [
"lint",
"validate",
"test"
],
"engines": {
"node": ">=10.0.0"
},
"release": {
"success": []
}
}