-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1008 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1008 Bytes
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
{
"name": "ayy",
"version": "4.0.0",
"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 tests/*.ts && ./node_modules/.bin/tsc --noEmit tests/*.ts && biome lint"
},
"devDependencies": {
"@types/node": "^22.15.17",
"ava": "^6.3.0",
"typescript": "^5.8.3"
},
"ava": {
"nodeArguments": [
"--experimental-strip-types",
"--no-warnings=ExperimentalWarning"
]
},
"author": "Ivan Kozik",
"license": "ISC",
"repository": "ludios/ayy",
"engines": {
"node": ">= 14"
},
"pnpm": {
"overrides": {
"esbuild": "0.25.3"
}
}
}