-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.52 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "cronnor",
"version": "2.4.0",
"description": "Bibliothèque JavaScript implémentant un programme cron.",
"keywords": [
"cron",
"crontab",
"scheduler",
"cronnor",
"front-end",
"backend"
],
"homepage": "https://github.com/regseb/cronnor#readme",
"bugs": {
"url": "https://github.com/regseb/cronnor/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "Sébastien Règne <[email protected]> (https://github.com/regseb)",
"funding": [
"https://buymeacoffee.com/regseb",
"https://www.paypal.me/sebastienregne"
],
"files": [
"./src/",
"./types/"
],
"exports": {
".": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"./cron": {
"types": "./types/cron.d.ts",
"default": "./src/cron.js"
},
"./cronexp": {
"types": "./types/cronexp.d.ts",
"default": "./src/cronexp.js"
},
"./at": {
"types": "./types/at.d.ts",
"default": "./src/at.js"
},
"./package.json": "./package.json"
},
"main": "./src/index.js",
"types": "./types/index.d.ts",
"repository": "regseb/cronnor",
"type": "module",
"scripts": {
"lint": "metalint",
"lint:fix": "metalint --fix",
"lint:types": "tsc --project .tsconfig_lint.json",
"test": "npm run test:coverage",
"test:unit": "mocha",
"test:coverage": "stryker run",
"jsdocs": "typedoc --tsconfig .tsconfig_jsdocs.json",
"prepare": "tsc --project .tsconfig_types.json",
"clean": "node .script/clean.js"
},
"devDependencies": {
"@prantlf/jsonlint": "16.0.0",
"@prettier/plugin-xml": "3.4.1",
"@stryker-mutator/core": "8.7.1",
"@stryker-mutator/mocha-runner": "8.7.1",
"@types/eslint-plugin-mocha": "10.4.0",
"@types/mocha": "10.0.10",
"@types/node": "22.10.5",
"eslint": "9.17.0",
"eslint-plugin-array-func": "5.0.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-mocha": "10.5.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-no-unsanitized": "4.1.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-regexp": "2.7.0",
"eslint-plugin-unicorn": "56.0.1",
"globals": "15.14.0",
"markdownlint": "0.37.3",
"metalint": "0.19.0",
"mocha": "11.0.1",
"npm-package-json-lint": "8.0.0",
"prettier": "3.4.2",
"publint": "0.2.12",
"typedoc": "0.27.6",
"typescript": "5.7.2",
"yaml-lint": "1.7.0"
},
"engines": {
"node": ">=20.18"
}
}