-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.73 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
{
"name": "tasktimer",
"version": "4.0.0",
"description": "An accurate timer utility for running periodic tasks on the given interval ticks or dates.",
"author": "Onur Yıldırım <onur@cutepilot.com>",
"license": "MIT",
"type": "module",
"main": "./lib/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"lib",
"LICENSE"
],
"engines": {
"node": ">=22"
},
"scripts": {
"lint": "biome check src test",
"format": "biome check --write src test",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"pretest": "npm run lint && npm run typecheck",
"test": "vitest run",
"cover": "vitest run --coverage",
"mutation": "stryker run",
"docs": "npm --prefix site run build",
"docs:dev": "npm --prefix site run dev",
"docs:host": "npm --prefix site run dev:host",
"prepublishOnly": "npm run build"
},
"repository": "onury/tasktimer",
"keywords": [
"timer",
"interval",
"tick",
"task",
"schedule",
"timeout",
"alarm",
"clock",
"time",
"job",
"work",
"run"
],
"bugs": {
"url": "https://github.com/onury/tasktimer/issues"
},
"homepage": "https://onury.io/tasktimer",
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@types/node": "^26.0.1",
"@vitest/coverage-istanbul": "^4.1.9",
"biome-config-oy": "^1.1.0",
"tsconfig-oy": "^2.0.1",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
}
}