forked from pelias/fuzzy-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.91 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-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",
"travis": "npm run check-dependencies && npm test",
"lint": "jshint .",
"validate": "npm ls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"check-dependencies": "node_modules/.bin/npm-check --production"
},
"bin": {
"fuzzy-tester": "./bin/fuzzy-tester"
},
"dependencies": {
"colors": "^1.x.x",
"commander": "2.11.0",
"deep-diff": "0.3.8",
"fj-compose": "^1.1.0",
"fs-extra": "^4.0.0",
"handlebars": "^4.0.5",
"haversine": "^1.0.0",
"is-object": "^1.0.1",
"juice": "^4.0.0",
"lodash": "^4.5.1",
"nodemailer": "^4.2.0",
"nodemailer-ses-transport": "1.5.1",
"pelias-config": "2.13.0",
"request": "^2.55.0",
"require-dir": "^0.3.2",
"sanitize-filename": "^1.3.0",
"sync-request": "^4.0.3"
},
"devDependencies": {
"csv-parse": ">=1.0.0",
"jshint": "^2.6.3",
"npm-check": "git://github.com/orangejulius/npm-check.git#disable-update-check",
"precommit-hook": "3.0.0",
"proj4": "^2.3.12",
"semantic-release": "^8.0.3",
"tap-dot": "^1.0.0",
"tap-spec": "^4.1.0",
"tape": "^4.5.0",
"through2": "^2.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",
"check-dependencies"
],
"engines": {
"node": ">=4.0.0",
"npm": "~2.0.0"
}
}