Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Oct 5, 2023
1 parent d3d4e95 commit ec7fd61
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 20 deletions.
1 change: 0 additions & 1 deletion .github/.keepalive

This file was deleted.

20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@
"dependencies": {
"@stdlib/array-float64": "^0.1.0",
"@stdlib/assert-contains": "^0.1.0",
"@stdlib/assert-has-own-property": "^0.1.0",
"@stdlib/assert-is-boolean": "^0.1.0",
"@stdlib/assert-is-nan": "^0.1.0",
"@stdlib/assert-is-number": "^0.1.0",
"@stdlib/assert-has-own-property": "^0.1.1",
"@stdlib/assert-is-boolean": "^0.1.1",
"@stdlib/assert-is-nan": "^0.1.1",
"@stdlib/assert-is-number": "^0.1.1",
"@stdlib/assert-is-number-array": "^0.1.0",
"@stdlib/assert-is-plain-object": "^0.1.0",
"@stdlib/assert-is-plain-object": "^0.1.1",
"@stdlib/assert-is-positive-integer": "^0.1.0",
"@stdlib/assert-is-string": "^0.1.0",
"@stdlib/assert-is-string": "^0.1.1",
"@stdlib/assert-is-typed-array-like": "^0.1.0",
"@stdlib/math-base-special-abs": "^0.1.0",
"@stdlib/math-base-special-roundn": "^0.1.0",
Expand All @@ -55,15 +55,15 @@
"@stdlib/stats-base-dists-normal-cdf": "^0.1.0",
"@stdlib/stats-base-dists-signrank-cdf": "^0.1.0",
"@stdlib/stats-ranks": "^0.1.0",
"@stdlib/string-format": "^0.1.0",
"@stdlib/string-format": "^0.1.1",
"@stdlib/types": "^0.1.0",
"@stdlib/utils-define-read-only-property": "^0.1.0",
"@stdlib/utils-define-read-only-property": "^0.1.1",
"@stdlib/utils-tabulate": "^0.1.0"
},
"devDependencies": {
"@stdlib/assert-is-object": "^0.1.0",
"@stdlib/assert-is-object": "^0.1.1",
"@stdlib/bench": "^0.1.0",
"@stdlib/constants-float64-eps": "^0.1.0",
"@stdlib/constants-float64-eps": "^0.1.1",
"@stdlib/random-base-discrete-uniform": "^0.1.0",
"@stdlib/random-base-randu": "^0.1.0",
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
Expand Down
18 changes: 9 additions & 9 deletions test/dist/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ var wilcoxon = require( './../../dist' );

// FIXTURES //

var twosidedApprox = require( './../..xtures/r/twosided_approx.json' );
var greaterApprox = require( './../..xtures/r/greater_approx.json' );
var lessApprox = require( './../..xtures/r/less_approx.json' );
var pairedLess = require( './../..xtures/r/paired_less.json' );
var twosided = require( './../..xtures/r/twosided.json' );
var greater = require( './../..xtures/r/greater.json' );
var paired = require( './../..xtures/r/paired.json' );
var ties = require( './../..xtures/r/ties.json' );
var less = require( './../..xtures/r/less.json' );
var twosidedApprox = require( './../fixtures/r/twosided_approx.json' );
var greaterApprox = require( './../fixtures/r/greater_approx.json' );
var lessApprox = require( './../fixtures/r/less_approx.json' );
var pairedLess = require( './../fixtures/r/paired_less.json' );
var twosided = require( './../fixtures/r/twosided.json' );
var greater = require( './../fixtures/r/greater.json' );
var paired = require( './../fixtures/r/paired.json' );
var ties = require( './../fixtures/r/ties.json' );
var less = require( './../fixtures/r/less.json' );


// TESTS //
Expand Down

0 comments on commit ec7fd61

Please sign in to comment.