-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.45 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
{
"name": "guardly",
"version": "1.0.15",
"description": "Security helper methods for front-end development",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"minify": "uglifyjs dist/index.js -o dist/index.js",
"dist": "npm run build && npm run minify",
"prepublishOnly": "npm run dist"
},
"devDependencies": {
"jest": "^29.7.0",
"uglify-js": "^3.18.0",
"typescript": "^4.5.4"
},
"keywords": [
"backend",
"cache",
"caching",
"cert",
"certificate",
"clickjack",
"connect",
"content",
"content-security-policy",
"csp",
"cross-origin-embedder-policy",
"cross-origin-opener-policy",
"cross-origin-resource-policy",
"csrf",
"express",
"frame",
"headers",
"hpkp",
"hsts",
"https",
"key",
"mimetype",
"nocache",
"noopen",
"origin-agent-cluster",
"pinni",
"policy",
"powered-by",
"referrer-policy",
"security",
"sri",
"ssl",
"strict-transport-security",
"x-content-type-options",
"x-dns-prefetch-control",
"x-download-options",
"x-frame-options",
"x-permitted-cross-domain-policies",
"x-powered-by",
"x-xss-protection",
"xss"
],
"author": "G.Slinn",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/garethslinn/guardly.git"
}
}