-
-
Notifications
You must be signed in to change notification settings - Fork 804
/
Copy pathpackage.json
106 lines (106 loc) · 1.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@stdlib/array/ones-like",
"version": "0.0.0",
"description": "Create an array filled with ones and having the same length and data type as a provided array.",
"license": "Apache-2.0",
"author": {
"name": "The Stdlib Authors",
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
},
"contributors": [
{
"name": "The Stdlib Authors",
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
}
],
"main": "./lib",
"directories": {
"benchmark": "./benchmark",
"doc": "./docs",
"example": "./examples",
"lib": "./lib",
"test": "./test"
},
"types": "./docs/types",
"scripts": {},
"homepage": "https://github.com/stdlib-js/stdlib",
"repository": {
"type": "git",
"url": "git://github.com/stdlib-js/stdlib.git"
},
"bugs": {
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {},
"devDependencies": {},
"engines": {
"node": ">=0.10.0",
"npm": ">2.7.0"
},
"os": [
"aix",
"darwin",
"freebsd",
"linux",
"macos",
"openbsd",
"sunos",
"win32",
"windows"
],
"keywords": [
"stdlib",
"stdtypes",
"types",
"data",
"structure",
"typed",
"array",
"typed array",
"typed-array",
"vector",
"ndarray",
"matrix",
"float64array",
"float32array",
"int32array",
"uint32array",
"int16array",
"uint16array",
"int8array",
"uint8array",
"uint8clampedarray",
"complex128array",
"complex64array",
"complex128",
"complex64",
"complex",
"cmplx",
"float64",
"double",
"precision",
"double-precision",
"single",
"float",
"single-precision",
"float32",
"ieee754",
"integer",
"int32",
"signed",
"unsigned",
"uint32",
"int16",
"uint16",
"int8",
"uint8",
"uint8c",
"clamped",
"short",
"long",
"generic",
"fill",
"filled",
"ones"
]
}