@stdlib/ndarray-vector-ctor 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +177 -0
- package/NOTICE +1 -0
- package/README.md +400 -0
- package/SECURITY.md +5 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +19 -0
- package/dist/index.js.map +7 -0
- package/docs/types/index.d.ts +927 -0
- package/lib/factory.js +261 -0
- package/lib/index.js +147 -0
- package/lib/main.js +610 -0
- package/lib/validate.js +82 -0
- package/package.json +93 -0
package/package.json
ADDED
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@stdlib/ndarray-vector-ctor",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Create a vector (i.e., a one-dimensional ndarray).",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "The Stdlib Authors",
|
|
8
|
+
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
|
|
9
|
+
},
|
|
10
|
+
"contributors": [
|
|
11
|
+
{
|
|
12
|
+
"name": "The Stdlib Authors",
|
|
13
|
+
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
16
|
+
"main": "./lib",
|
|
17
|
+
"directories": {
|
|
18
|
+
"doc": "./docs",
|
|
19
|
+
"lib": "./lib",
|
|
20
|
+
"dist": "./dist"
|
|
21
|
+
},
|
|
22
|
+
"types": "./docs/types",
|
|
23
|
+
"scripts": {},
|
|
24
|
+
"homepage": "https://stdlib.io",
|
|
25
|
+
"repository": {
|
|
26
|
+
"type": "git",
|
|
27
|
+
"url": "git://github.com/stdlib-js/ndarray-vector-ctor.git"
|
|
28
|
+
},
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"@stdlib/array-base-copy": "^0.2.2",
|
|
34
|
+
"@stdlib/array-from-iterator": "^0.2.2",
|
|
35
|
+
"@stdlib/array-typed": "^0.3.1",
|
|
36
|
+
"@stdlib/assert-has-own-property": "^0.2.2",
|
|
37
|
+
"@stdlib/assert-is-arraybuffer": "^0.2.2",
|
|
38
|
+
"@stdlib/assert-is-boolean": "^0.2.2",
|
|
39
|
+
"@stdlib/assert-is-buffer": "^0.2.2",
|
|
40
|
+
"@stdlib/assert-is-collection": "^0.2.2",
|
|
41
|
+
"@stdlib/assert-is-iterable-like": "^0.2.2",
|
|
42
|
+
"@stdlib/assert-is-nonnegative-integer": "^0.2.2",
|
|
43
|
+
"@stdlib/assert-is-plain-object": "^0.2.2",
|
|
44
|
+
"@stdlib/buffer-from-array": "^0.2.2",
|
|
45
|
+
"@stdlib/buffer-from-arraybuffer": "^0.2.2",
|
|
46
|
+
"@stdlib/buffer-from-buffer": "^0.2.2",
|
|
47
|
+
"@stdlib/ndarray-base-assert-is-data-type": "^0.3.0",
|
|
48
|
+
"@stdlib/ndarray-base-assert-is-index-mode": "^0.2.2",
|
|
49
|
+
"@stdlib/ndarray-base-assert-is-order": "^0.2.2",
|
|
50
|
+
"@stdlib/ndarray-base-buffer": "^0.3.0",
|
|
51
|
+
"@stdlib/ndarray-base-bytes-per-element": "^0.3.0",
|
|
52
|
+
"@stdlib/ndarray-base-strides2offset": "^0.2.2",
|
|
53
|
+
"@stdlib/ndarray-ctor": "^0.2.2",
|
|
54
|
+
"@stdlib/ndarray-defaults": "^0.4.0",
|
|
55
|
+
"@stdlib/object-assign": "^0.2.2",
|
|
56
|
+
"@stdlib/string-format": "^0.2.2",
|
|
57
|
+
"@stdlib/symbol-iterator": "^0.2.2",
|
|
58
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.2",
|
|
59
|
+
"@stdlib/error-tools-fmtprodmsg": "^0.2.2"
|
|
60
|
+
},
|
|
61
|
+
"devDependencies": {},
|
|
62
|
+
"engines": {
|
|
63
|
+
"node": ">=0.10.0",
|
|
64
|
+
"npm": ">2.7.0"
|
|
65
|
+
},
|
|
66
|
+
"os": [
|
|
67
|
+
"aix",
|
|
68
|
+
"darwin",
|
|
69
|
+
"freebsd",
|
|
70
|
+
"linux",
|
|
71
|
+
"macos",
|
|
72
|
+
"openbsd",
|
|
73
|
+
"sunos",
|
|
74
|
+
"win32",
|
|
75
|
+
"windows"
|
|
76
|
+
],
|
|
77
|
+
"keywords": [
|
|
78
|
+
"stdlib",
|
|
79
|
+
"stdtypes",
|
|
80
|
+
"types",
|
|
81
|
+
"data",
|
|
82
|
+
"structure",
|
|
83
|
+
"vector",
|
|
84
|
+
"vec",
|
|
85
|
+
"ndarray",
|
|
86
|
+
"constructor",
|
|
87
|
+
"ctor"
|
|
88
|
+
],
|
|
89
|
+
"funding": {
|
|
90
|
+
"type": "opencollective",
|
|
91
|
+
"url": "https://opencollective.com/stdlib"
|
|
92
|
+
}
|
|
93
|
+
}
|