-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.63 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.63 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@kensio/smartass",
"description": "TypeScript-first test assertion functions with precise type narrowing",
"author": "Kensio Software",
"repository": "https://github.com/KensioSoftware/smartass",
"license": "AGPL-3.0",
"version": "0.1.6",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=24.14.0"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"fmt": "eslint --fix '{src,test}/**/*.ts' && prettier --write '{src,test}/**/*.{ts,json,md,css,html,yml,yaml}'",
"lint": "eslint '{src,test}/**/*.ts' && prettier --check '{src,test}/**/*.{ts,json,md,css,html,yml,yaml}'",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"test",
"assertion",
"type",
"narrowing"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/eslint-plugin-security": "^3.0.1",
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.10",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.7.1",
"eslint-plugin-no-secrets": "^2.3.3",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-unicorn": "^63.0.0",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18"
}
}