-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.62 KB
/
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
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
{
"name": "type-scheduler",
"version": "0.1.0-beta",
"description": "Decorator based abstract scheduler for TypeScript",
"keywords": [
"scheduler",
"decorator",
"typescript",
"cron",
"node-cron"
],
"bugs": {
"url": "https://github.com/handgarden/type-scheduler/issues"
},
"main": "./dist/index.js",
"readmeFilename": "README.md",
"author": "handgarden <[email protected]> (https://github.com/handgarden)",
"repository": {
"type": "git",
"url": ""
},
"files": [
"dist"
],
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"dependencies": {
"cron": "^3.1.7"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.28",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"peerDependencies": {
"cron": "^3.1.7"
},
"scripts": {
"test": "jest --silent",
"test:coverage": "jest --coverage --silent",
"build": "npx rimraf ./dist && tsc -p tsconfig.build.json",
"test-publish": "npm run test && npm run build && npm publish --access public"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": ".",
"testRegex": [
".*\\.spec\\.ts$",
".*\\.test\\.ts$"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "./coverage",
"testEnvironment": "node",
"roots": [
"<rootDir>/test/"
]
}
}