-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 984 Bytes
/
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
{
"name": "expect-ct",
"description": "Middleware to set the Expect-CT header",
"version": "1.0.0",
"author": "Evan Hahn <[email protected]> (https://evanhahn.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/helmetjs/expect-ct/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/helmetjs/expect-ct.git"
},
"keywords": [
"express",
"security",
"expect-ct"
],
"engines": {
"node": ">=10.0.0"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"index.js",
"index.d.ts"
],
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"pretest": "npm run lint",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"format": "prettier --write .",
"test": "node test.js"
},
"devDependencies": {
"eslint": "^8.45.0",
"prettier": "^3.0.0"
}
}