-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.03 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
{
"name": "create-security-txt",
"version": "1.1.0",
"description": "Create an RFC 9116 compliant security.txt file.",
"keywords": [
"cli",
"nodejs",
"security",
"security-tools",
"security-txt",
"rfc-9116"
],
"license": "MIT",
"repository": "github:mrcgrtz/create-security-txt",
"funding": {
"type": "kofi",
"url": "https://ko-fi.com/mrcgrtz"
},
"author": {
"name": "Marc Görtz",
"email": "[email protected]",
"url": "https://marcgoertz.de/"
},
"type": "module",
"exports": "./cli.js",
"bin": {
"create-security-txt": "cli.js"
},
"engines": {
"node": "^16.17 || ^18.7 || >=20"
},
"scripts": {
"coverage": "c8 report --reporter=lcov",
"prepare": "husky",
"test": "xo && c8 node --test"
},
"dependencies": {
"date-fns": "^4.1.0",
"meow": "^13.0.0"
},
"devDependencies": {
"c8": "^10.1.2",
"execa": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.0.2",
"xo": "^0.59.3"
},
"lint-staged": {
"*.js": "xo --fix"
}
}