-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 849 Bytes
/
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
{
"name": "@writetome51/is-match",
"version": "0.0.1",
"description": "A substitute for using === operator. Useful when arrays don't have to be identical via === to be deemed a match. They must only have identical content.",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/writetome51/is-match.git"
},
"keywords": [
"match",
"identical",
"comparison",
"function",
"array",
"arrays",
"check",
"data",
"type"
],
"author": "Steve Thompson",
"license": "MIT",
"bugs": {
"url": "https://github.com/writetome51/is-match/issues"
},
"homepage": "https://github.com/writetome51/is-match#readme",
"dependencies": {
"@writetome51/is-array-not-array": "^2.0.0",
"@writetome51/not": "^2.0.0"
}
}