Skip to content

Commit 4758f53

Browse files
committed
fix package.json file and test.j
1 parent c94548a commit 4758f53

File tree

2 files changed

+6
-24
lines changed

2 files changed

+6
-24
lines changed

lib/node_modules/@stdlib/blas/ext/base/ndarray/srev/package.json

Lines changed: 5 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,7 @@
2222
"test": "./test"
2323
},
2424
"types": "./docs/types",
25-
"scripts": {
26-
"test": "make test",
27-
"test-cov": "make test-cov",
28-
"examples": "make examples",
29-
"benchmark": "make benchmark"
30-
},
25+
"scripts": {},
3126
"homepage": "https://github.com/stdlib-js/stdlib",
3227
"repository": {
3328
"type": "git",
@@ -36,22 +31,8 @@
3631
"bugs": {
3732
"url": "https://github.com/stdlib-js/stdlib/issues"
3833
},
39-
"dependencies": {
40-
"@stdlib/math/base/special/floor": "^0.2.2",
41-
"@stdlib/ndarray/base/data-buffer": "^0.2.1",
42-
"@stdlib/ndarray/base/numel-dimension": "^0.2.1",
43-
"@stdlib/ndarray/base/offset": "^0.2.1",
44-
"@stdlib/ndarray/base/stride": "^0.2.1"
45-
},
46-
"devDependencies": {
47-
"@stdlib/array/float32": "^0.2.2",
48-
"@stdlib/ndarray/base/ctor": "^0.2.2",
49-
"@stdlib/random/base/randu": "^0.2.1",
50-
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
51-
"istanbul": "^0.4.1",
52-
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
53-
"bench": "git+https://github.com/kgryte/bench.git"
54-
},
34+
"dependencies": {},
35+
"devDependencies": {},
5536
"engines": {
5637
"node": ">=0.10.0",
5738
"npm": ">2.7.0"
@@ -82,5 +63,6 @@
8263
"float32",
8364
"float",
8465
"single"
85-
]
66+
],
67+
"__stdlib__": {}
8668
}

lib/node_modules/@stdlib/blas/ext/base/ndarray/srev/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
// MODULES //
2222

23-
var tape = require( 'tape' ); // eslint-disable-line node/no-unpublished-require
23+
var tape = require( 'tape' );
2424
var Float32Array = require( '@stdlib/array/float32' );
2525
var ndarray = require( '@stdlib/ndarray/base/ctor' );
2626
var srev = require( './../lib' );

0 commit comments

Comments
 (0)