-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.57 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "bind-defaults",
"version": "0.0.0-dev",
"license": "MIT",
"description": "A utility for enhancing functions by binding default values to their first parameter",
"repository": "https://github.com/unlight/bind-defaults",
"homepage": "https://github.com/unlight/bind-defaults",
"keywords": [
"bind",
"bind-merge",
"bind-with-context",
"default-parameters",
"defaults",
"merge",
"merge-context",
"option-normalization",
"options",
"options-merging"
],
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"default": "./dist/index.mjs"
}
},
"scripts": {
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:r": "vitest run",
"test:cov": "vitest run --coverage",
"test:w": "vitest watch",
"lint": "npm run eslint && npm run tscheck",
"eslint": "node node_modules/eslint/bin/eslint src/**/*.ts",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint:fix": "npm run eslint -- --fix",
"tscheck": "tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"format:src": "prettier src --write",
"build": "sh Taskfile buildMicrobundle5",
"test:m": "node node_modules/@stryker-mutator/core/bin/stryker.js run"
},
"devDependencies": {
"@eslint/compat": "^1.2.8",
"@eslint/js": "^9.24.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@stryker-mutator/api": "^8.7.1",
"@stryker-mutator/core": "^8.7.1",
"@stryker-mutator/html-reporter": "^3.1.0",
"@stryker-mutator/vitest-runner": "^8.7.1",
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "3.1.1",
"c8": "^10.1.3",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-etc": "^2.0.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-perfectionist": "^4.11.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^58.0.0",
"eslint-plugin-wix-editor": "^3.3.0",
"globals": "^16.0.0",
"microbundle": "^0.15.1",
"prettier": "^3.5.3",
"semantic-release": "^24.2.3",
"semantic-release-monorepo": "^8.0.2",
"simplytyped": "^3.3.0",
"stryker-cli": "^1.0.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.29.0",
"vitest": "^3.1.1"
}
}