-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 848 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
{
"name": "exami",
"version": "0.8.52",
"author": "Abhishiv Saxena<[email protected]>",
"license": "MIT",
"description": "Ultralean Testing framework for browser and node",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/abhishiv/attorney"
},
"files": [
"./dist"
],
"devDependencies": {
"esbuild": "^0.21.5",
"typescript": "^5.2.2",
"vitest": "^2.0.5"
},
"scripts": {
"build": "make build",
"test": "npx vitest --run --passWithNoTests",
"coverage": "vitest run --coverage --run --passWithNoTests",
"typecheck": "npx tsc --noEmit"
},
"sideEffects": false,
"type": "module",
"main": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts"
}
},
"dependencies": {
"buckwheat": "^1.1.2"
},
"peerDependencies": {}
}