@stdlib/array-index 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 +562 -0
- package/SECURITY.md +5 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +15 -0
- package/dist/index.js.map +7 -0
- package/docs/types/index.d.ts +539 -0
- package/lib/cache.js +40 -0
- package/lib/cache_gc.js +59 -0
- package/lib/defaults.js +42 -0
- package/lib/find.js +49 -0
- package/lib/id.js +46 -0
- package/lib/index.js +43 -0
- package/lib/main.js +443 -0
- package/lib/validate.js +66 -0
- package/package.json +104 -0
package/package.json
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@stdlib/array-index",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Array index constructor.",
|
|
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
|
+
"benchmark": "./benchmark",
|
|
19
|
+
"doc": "./docs",
|
|
20
|
+
"example": "./examples",
|
|
21
|
+
"lib": "./lib",
|
|
22
|
+
"test": "./test"
|
|
23
|
+
},
|
|
24
|
+
"types": "./docs/types",
|
|
25
|
+
"scripts": {
|
|
26
|
+
"test": "make test",
|
|
27
|
+
"test-cov": "make test-cov",
|
|
28
|
+
"examples": "make examples",
|
|
29
|
+
"benchmark": "make benchmark"
|
|
30
|
+
},
|
|
31
|
+
"homepage": "https://stdlib.io",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "git://github.com/stdlib-js/array-index.git"
|
|
35
|
+
},
|
|
36
|
+
"bugs": {
|
|
37
|
+
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@stdlib/array-base-assert-is-accessor-array": "^0.1.0",
|
|
41
|
+
"@stdlib/array-base-copy": "^0.1.0",
|
|
42
|
+
"@stdlib/array-base-resolve-getter": "^0.1.0",
|
|
43
|
+
"@stdlib/array-dtype": "^0.1.0",
|
|
44
|
+
"@stdlib/array-to-json": "^0.1.0",
|
|
45
|
+
"@stdlib/assert-has-own-property": "^0.1.1",
|
|
46
|
+
"@stdlib/assert-is-boolean": "^0.1.1",
|
|
47
|
+
"@stdlib/assert-is-collection": "^0.1.0",
|
|
48
|
+
"@stdlib/assert-is-integer": "^0.1.0",
|
|
49
|
+
"@stdlib/assert-is-plain-object": "^0.1.1",
|
|
50
|
+
"@stdlib/string-format": "^0.1.1",
|
|
51
|
+
"@stdlib/types": "^0.3.1",
|
|
52
|
+
"@stdlib/utils-define-nonenumerable-property": "^0.1.1",
|
|
53
|
+
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.1.1",
|
|
54
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.1.1",
|
|
55
|
+
"@stdlib/utils-linked-list": "^0.1.1",
|
|
56
|
+
"@stdlib/error-tools-fmtprodmsg": "^0.1.1"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@stdlib/array-base-to-accessor-array": "^0.1.0",
|
|
60
|
+
"@stdlib/array-int32": "^0.1.1",
|
|
61
|
+
"@stdlib/array-uint8": "^0.1.1",
|
|
62
|
+
"@stdlib/assert-instance-of": "^0.1.1",
|
|
63
|
+
"@stdlib/assert-is-string": "^0.1.1",
|
|
64
|
+
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
65
|
+
"istanbul": "^0.4.1",
|
|
66
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
67
|
+
"@stdlib/bench-harness": "^0.1.2",
|
|
68
|
+
"@stdlib/bench": "^0.3.1"
|
|
69
|
+
},
|
|
70
|
+
"engines": {
|
|
71
|
+
"node": ">=0.10.0",
|
|
72
|
+
"npm": ">2.7.0"
|
|
73
|
+
},
|
|
74
|
+
"os": [
|
|
75
|
+
"aix",
|
|
76
|
+
"darwin",
|
|
77
|
+
"freebsd",
|
|
78
|
+
"linux",
|
|
79
|
+
"macos",
|
|
80
|
+
"openbsd",
|
|
81
|
+
"sunos",
|
|
82
|
+
"win32",
|
|
83
|
+
"windows"
|
|
84
|
+
],
|
|
85
|
+
"keywords": [
|
|
86
|
+
"stdlib",
|
|
87
|
+
"stdtypes",
|
|
88
|
+
"types",
|
|
89
|
+
"data",
|
|
90
|
+
"structure",
|
|
91
|
+
"array",
|
|
92
|
+
"fancy",
|
|
93
|
+
"indexing",
|
|
94
|
+
"index",
|
|
95
|
+
"vector",
|
|
96
|
+
"slice",
|
|
97
|
+
"constructor",
|
|
98
|
+
"ctor"
|
|
99
|
+
],
|
|
100
|
+
"funding": {
|
|
101
|
+
"type": "opencollective",
|
|
102
|
+
"url": "https://opencollective.com/stdlib"
|
|
103
|
+
}
|
|
104
|
+
}
|