-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.36 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
{
"name": "@chrisburnell/check-invalid-datetimes",
"version": "0.1.3",
"description": "Check HTML and XML files for strings containing \"Invalid DateTime\" from failed/malformed DateTime formatting.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:chrisburnell/check-invalid-datetimes.git"
},
"homepage": "https://chrisburnell.com/check-invalid-datetimes/",
"bugs": {
"url": "https://github.com/chrisburnell/check-invalid-datetimes/issues"
},
"author": {
"name": "Chris Burnell",
"email": "me@chrisburnell.com",
"url": "https://chrisburnell.com/"
},
"contributors": [
{
"name": "Chris Burnell",
"email": "me@chrisburnell.com",
"url": "https://chrisburnell.com"
}
],
"funding": [
{
"type": "buymeacoffee",
"url": "https://buymeacoffee.com/chrisburnell"
},
{
"type": "github",
"url": "https://github.com/sponsors/chrisburnell"
}
],
"publishConfig": {
"access": "public",
"provenance": true
},
"main": "check-invalid-datetimes.js",
"bin": {
"check-invalid-datetimes": "src/cli.js"
},
"scripts": {
"test": "node --test"
},
"keywords": [
"cli",
"datetime"
],
"dependencies": {
"chalk": "^5.3.0",
"command-line-args": "^6.0.0",
"fast-glob": "^3.3.2",
"he": "^1.2.0"
},
"type": "module"
}