-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1006 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
34
35
36
37
38
39
40
41
42
43
{
"name": "ayy",
"version": "3.0.2",
"description": "Assert module for node that 1) appends the provided message to the default message, instead of replacing it 2) supports calling a function to get the message 3) A.eq does ===; no support for == or !=",
"homepage": "https://github.com/ludios/ayy",
"issues": "https://github.com/ludios/ayy/issues",
"keywords": [
"assert",
"assertion"
],
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"build": "./node_modules/.bin/tsc",
"test": "./node_modules/.bin/ava && ./node_modules/.bin/tsc --noEmit tests/*.ts && biome lint"
},
"devDependencies": {
"@types/node": "^20.14.12",
"typescript": "^5.5.4",
"ava": "^6.1.3",
"tsx": "^4.16.2"
},
"ava": {
"extensions": {
"ts": "commonjs"
},
"nodeArguments": [
"--import=tsx"
]
},
"author": "Ivan Kozik",
"license": "ISC",
"repository": "ludios/ayy",
"engines": {
"node": ">= 14"
},
"pnpm": {
"overrides": {
"esbuild": "0.23.0"
}
}
}