-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "is-like",
"version": "0.1.13",
"description": "Functions to check if a value is something alike.",
"main": "./index.cjs",
"module": "./index.mjs",
"types": "index.d.ts",
"exports": {
"require": "./index.cjs",
"import": "./index.mjs",
"types": "./index.d.ts"
},
"scripts": {
"test": "mocha test.cjs && mocha test.mjs",
"test:bun": "bun run ./node_modules/mocha/bin/mocha test.cjs && bun run ./node_modules/mocha/bin/mocha test.mjs",
"test:deno": "deno run test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ayonli/is-like.git"
},
"keywords": [
"is",
"like",
"array",
"set",
"map",
"buffer",
"TypedArray",
"array-like"
],
"author": "A-yon Lee <the@ayon.li>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ayonli/is-like/issues"
},
"homepage": "https://github.com/ayonli/is-like#readme",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.3",
"mocha": "^10.2.0",
"typescript": "^4.9.5"
}
}