-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.62 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
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@stdlib/namespace",
"version": "0.3.3",
"description": "The standard library namespace.",
"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"
}
],
"bin": {
"stdlib-namespace": "./bin/cli"
},
"main": "./lib/index.js",
"directories": {
"benchmark": "./benchmark",
"doc": "./docs",
"example": "./examples",
"lib": "./lib",
"test": "./test"
},
"types": "./docs/types",
"scripts": {
"test": "make test",
"test-cov": "make test-cov",
"examples": "make examples"
},
"homepage": "https://stdlib.io",
"repository": {
"type": "git",
"url": "git://github.com/stdlib-js/namespace.git"
},
"bugs": {
"url": "https://github.com/stdlib-js/stdlib/issues"
},
"dependencies": {
"@stdlib/array": "github:stdlib-js/array#main",
"@stdlib/assert": "github:stdlib-js/assert#main",
"@stdlib/bench": "github:stdlib-js/bench#main",
"@stdlib/bigint": "github:stdlib-js/bigint#main",
"@stdlib/blas": "github:stdlib-js/blas#main",
"@stdlib/boolean": "github:stdlib-js/boolean#main",
"@stdlib/buffer": "github:stdlib-js/buffer#main",
"@stdlib/cli": "github:stdlib-js/cli#main",
"@stdlib/complex": "github:stdlib-js/complex#main",
"@stdlib/constants": "github:stdlib-js/constants#main",
"@stdlib/datasets": "github:stdlib-js/datasets#main",
"@stdlib/dstructs": "github:stdlib-js/dstructs#main",
"@stdlib/error": "github:stdlib-js/error#main",
"@stdlib/fs": "github:stdlib-js/fs#main",
"@stdlib/function": "github:stdlib-js/function#main",
"@stdlib/iter": "github:stdlib-js/iter#main",
"@stdlib/math": "github:stdlib-js/math#main",
"@stdlib/ml": "github:stdlib-js/ml#main",
"@stdlib/ndarray": "github:stdlib-js/ndarray#main",
"@stdlib/net": "github:stdlib-js/net#main",
"@stdlib/nlp": "github:stdlib-js/nlp#main",
"@stdlib/number": "github:stdlib-js/number#main",
"@stdlib/object": "github:stdlib-js/object#main",
"@stdlib/os": "github:stdlib-js/os#main",
"@stdlib/plot": "github:stdlib-js/plot#main",
"@stdlib/process": "github:stdlib-js/process#main",
"@stdlib/proxy": "github:stdlib-js/proxy#main",
"@stdlib/random": "github:stdlib-js/random#main",
"@stdlib/regexp": "github:stdlib-js/regexp#main",
"@stdlib/simulate": "github:stdlib-js/simulate#main",
"@stdlib/slice": "github:stdlib-js/slice#main",
"@stdlib/stats": "github:stdlib-js/stats#main",
"@stdlib/streams": "github:stdlib-js/streams#main",
"@stdlib/strided": "github:stdlib-js/strided#main",
"@stdlib/string": "github:stdlib-js/string#main",
"@stdlib/symbol": "github:stdlib-js/symbol#main",
"@stdlib/time": "github:stdlib-js/time#main",
"@stdlib/utils": "github:stdlib-js/utils#main",
"@stdlib/wasm": "github:stdlib-js/wasm#main"
},
"devDependencies": {
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
"istanbul": "^0.4.1",
"tap-min": "git+https://github.com/Planeshifter/tap-min.git"
},
"engines": {
"node": ">=0.10.0",
"npm": ">2.7.0"
},
"os": [
"aix",
"darwin",
"freebsd",
"linux",
"macos",
"openbsd",
"sunos",
"win32",
"windows"
],
"keywords": [
"stdlib",
"standard",
"library",
"lib",
"namespace",
"ns"
],
"__stdlib__": {
"envs": {
"browser": false
}
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/stdlib"
}
}