Skip to content

Commit

Permalink
upgrade deps, update eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
mourner committed Feb 5, 2016
1 parent fcc93c2 commit ba94af0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 50 deletions.
38 changes: 0 additions & 38 deletions .eslintrc

This file was deleted.

24 changes: 14 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,24 @@
},
"homepage": "https://github.com/mapbox/geobuf",
"devDependencies": {
"benchmark": "~1.0.0",
"browserify": "^11.0.1",
"coveralls": "~2.11.2",
"eslint": "^0.17.1",
"benchmark": "~2.1.0",
"browserify": "^13.0.0",
"coveralls": "~2.11.6",
"eslint": "^1.10.3",
"eslint-config-mourner": "^1.0.1",
"geojson-fixtures": "0.6.1",
"in-publish": "^2.0.0",
"istanbul": "~0.3.11",
"mkdirp": "^0.5.0",
"tap": "~0.7.1",
"istanbul": "~0.4.2",
"mkdirp": "^0.5.1",
"tap": "~5.4.2",
"uglifyjs": "^2.4.10"
},
"dependencies": {
"concat-stream": "^1.4.7",
"pbf": "^1.3.2",
"shapefile": "~0.3.0"
"concat-stream": "^1.5.1",
"pbf": "^1.3.5",
"shapefile": "~0.3.1"
},
"eslintConfig": {
"extends": "mourner"
}
}
4 changes: 2 additions & 2 deletions test/validate.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ test('roundtrip a line with potential accumulating error', function (t) {
// line of 0.00000049 * 40 = 0.0000196 over the full length.
var feature = {
'type': 'MultiPolygon',
'coordinates': [[[ ]]]
'coordinates': [[[]]]
};
var points = 40;
// X coordinates [0, 1.00000049, 2.00000098, 3.00000147, 4.00000196, ...,
Expand All @@ -54,7 +54,7 @@ test('roundtrip a circle with potential accumulating error', function (t) {
// Generate an approximate circle with 16 points around.
var feature = {
'type': 'MultiPolygon',
'coordinates': [[[ ]]]
'coordinates': [[[]]]
};
var points = 16;
for (var i = 0; i <= points; i++) {
Expand Down

0 comments on commit ba94af0

Please sign in to comment.