-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.01 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
{
"name": "which-istypedarray",
"version": "1.1.0",
"description": "check if [a] an array or [b] is an typed array or [c] an buffer array or [d] specific type using the package",
"main": "index.js",
"exports": {
"require": "./index.js",
"import": "./index.mjs"
},
"unpkg": "index.min.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ganeshkbhat/which-istypedarray.git"
},
"bugs": {
"url": "https://github.com/ganeshkbhat/which-istypedarray/issues"
},
"homepage": "https://github.com/ganeshkbhat/which-istypedarray#readme",
"scripts": {
"test": "mocha --reporter spec --recursive --timeout 60000",
"uglify": "uglifyjs --compress --mangle reserved=['$','require','exports'] index.js -o index.min.js",
"gitadd": "git add .",
"build": "tsc index.js --allowJs --emitDeclarationOnly --declaration --declarationMap --sourceMap"
},
"pre-commit": {
"run": [
"uglify",
"build",
"gitadd",
"test"
]
},
"keywords": [
"isTypedArray",
"check if the array is a typed array",
"array",
"get property value of an predefined object property",
"supports DataView",
"suppprts IsArrayBufferView",
"is TypedArray Using regex Pattern check",
"convert to BufferView",
"convert to a string using toString",
"supportsArrayBuffer",
"check if the array is a simple array",
"integer",
"is like buffer",
"isTypedArray",
"isBufferLike",
"supportsArrayBuffer",
"toString",
"supportsDataView",
"nativeIsArrayBufferView",
"isTypedArrayUsingPattern",
"toBufferView",
"getShallowProperty",
"tagTester"
],
"author": "Ganesh B <ganeshsurfs@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.11.16",
"chai": "^4.4.1",
"mocha": "^10.2.0",
"pre-commit": "^1.2.2",
"pre-push": "^0.1.4",
"sinon": "^17.0.1",
"typescript": "^5.3.3",
"uglify-js": "^3.17.4",
"unimported": "^1.31.1"
}
}