-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
40 lines (40 loc) · 970 Bytes
/
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
{
"name": "pelias-acceptance-tests",
"version": "0.0.0",
"description": "Acceptance tests for Pelias Geocoder API",
"keywords": [
"tests",
"api",
"acceptance",
"regression",
"continuous-integration"
],
"author": "mapzen",
"main": "index.js",
"scripts": {
"config": "node -e \"console.log(JSON.stringify(require( 'pelias-config' ).generate(), null, 2))\"",
"test": "./node_modules/pelias-fuzzy-tester/bin/fuzzy-tester",
"lint": "jshint .",
"validate": "npm ls"
},
"dependencies": {
"pelias-fuzzy-tester": "^1.19.0"
},
"devDependencies": {
"jshint": "^2.9.4",
"precommit-hook": "3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/acceptance-tests"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pelias/acceptance-tests/issues"
},
"pre-commit": [
"lint",
"validate"
],
"homepage": "https://github.com/pelias/acceptance-tests"
}