-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
124 lines (124 loc) · 4.67 KB
/
deno.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
120
121
122
123
124
{
"name": "@nick/math",
"version": "0.4.0",
"license": "MIT",
"author": {
"name": "Nicholas Berlette",
"email": "[email protected]",
"url": "https://github.com/nberlette"
},
"exports": {
".": "./mod.ts",
"./abs": "./src/abs.ts",
"./acos": "./src/acos.ts",
"./acosh": "./src/acosh.ts",
"./asin": "./src/asin.ts",
"./asinh": "./src/asinh.ts",
"./atan": "./src/atan.ts",
"./atan2": "./src/atan2.ts",
"./atanh": "./src/atanh.ts",
"./cbrt": "./src/cbrt.ts",
"./ceil": "./src/ceil.ts",
"./clamp": "./src/clamp.ts",
"./clz32": "./src/clz32.ts",
"./cos": "./src/cos.ts",
"./cosh": "./src/cosh.ts",
"./exp": "./src/exp.ts",
"./expm1": "./src/expm1.ts",
"./f16round": "./src/f16round.ts",
"./floor": "./src/floor.ts",
"./fround": "./src/fround.ts",
"./hypot": "./src/hypot.ts",
"./ieee754": "./src/ieee754.ts",
"./imul": "./src/imul.ts",
"./infinity": "./src/guards/infinity.ts",
"./log": "./src/log.ts",
"./log1p": "./src/log1p.ts",
"./log2": "./src/log2.ts",
"./log10": "./src/log10.ts",
"./max": "./src/max.ts",
"./min": "./src/min.ts",
"./nan": "./src/guards/nan.ts",
"./pi": "./src/constants/pi.ts",
"./pow": "./src/pow.ts",
"./random": "./src/random.ts",
"./round": "./src/round.ts",
"./sign": "./src/sign.ts",
"./sin": "./src/sin.ts",
"./sinh": "./src/sinh.ts",
"./sqrt": "./src/sqrt.ts",
"./tan": "./src/tan.ts",
"./tanh": "./src/tanh.ts",
"./trunc": "./src/trunc.ts",
"./constants": "./src/constants/mod.ts",
"./constants/e": "./src/constants/e.ts",
"./constants/epsilon": "./src/constants/epsilon.ts",
"./constants/infinity": "./src/constants/infinity.ts",
"./constants/ln2": "./src/constants/ln2.ts",
"./constants/ln10": "./src/constants/ln10.ts",
"./constants/log2e": "./src/constants/log2e.ts",
"./constants/log10e": "./src/constants/log10e.ts",
"./constants/max-safe-integer": "./src/constants/max_safe_integer.ts",
"./constants/max-value": "./src/constants/max_value.ts",
"./constants/min-safe-integer": "./src/constants/min_safe_integer.ts",
"./constants/min-value": "./src/constants/min_value.ts",
"./constants/nan": "./src/constants/nan.ts",
"./constants/negative-infinity": "./src/constants/negative_infinity.ts",
"./constants/pi": "./src/constants/pi.ts",
"./constants/positive-infinity": "./src/constants/positive_infinity.ts",
"./constants/sqrt1-2": "./src/constants/sqrt1_2.ts",
"./constants/sqrt2": "./src/constants/sqrt2.ts",
"./float16": "./src/float16/mod.ts",
"./float16/encode": "./src/float16/encode.ts",
"./float16/decode": "./src/float16/decode.ts",
"./float16/round": "./src/float16/round.ts",
"./float32": "./src/float32/mod.ts",
"./float32/encode": "./src/float32/encode.ts",
"./float32/decode": "./src/float32/decode.ts",
"./float32/round": "./src/float32/round.ts",
"./guards": "./src/guards/mod.ts",
"./guards/finite": "./src/guards/finite.ts",
"./guards/infinity": "./src/guards/infinity.ts",
"./guards/positive-infinity": "./src/guards/positive_infinity.ts",
"./guards/negative-infinity": "./src/guards/negative_infinity.ts",
"./guards/negative-zero": "./src/guards/negative_zero.ts",
"./guards/integer": "./src/guards/integer.ts",
"./guards/safe-integer": "./src/guards/safe_integer.ts",
"./guards/nan": "./src/guards/nan.ts",
"./is/finite": "./src/guards/finite.ts",
"./is/infinity": "./src/guards/infinity.ts",
"./is/positive-infinity": "./src/guards/positive_infinity.ts",
"./is/negative-infinity": "./src/guards/negative_infinity.ts",
"./is/negative-zero": "./src/guards/negative_zero.ts",
"./is/integer": "./src/guards/integer.ts",
"./is/safe-integer": "./src/guards/safe_integer.ts",
"./is/nan": "./src/guards/nan.ts",
"./types": "./src/types/mod.ts",
"./types/finite": "./src/types/finite.ts",
"./types/float": "./src/types/float.ts",
"./types/integer": "./src/types/integer.ts",
"./types/precision": "./src/types/precision.ts",
"./types/safe-integer": "./src/types/safe_integer.ts"
},
"tasks": {
"bench": "./scripts/benchmark.ts",
"test": "deno test -A --no-check=remote --coverage=tests/.coverage --clean --parallel",
"ok": "deno fmt --check && deno lint src && deno doc --lint src && deno run test && deno run test --doc",
"fix": "deno fmt && deno lint --fix ./src"
},
"lock": false,
"vendor": false,
"nodeModulesDir": "auto",
"publish": {
"include": [
"./src/**/*.ts",
"./mod.ts",
"./deno.json",
"./README.md",
"./LICENSE"
],
"exclude": [
"**/*.{test,bench}.*"
]
}
}