-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.71 KB
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
{
"name": "check-my-headers",
"version": "0.1.3",
"description": "Fast and simple way to check any HTTP Headers",
"main": "index.js",
"bin": {
"check-my-headers": "./bin/check-my-headers.js"
},
"scripts": {
"test": "FORCE_COLOR=3 jest --verbose",
"test:update": "FORCE_COLOR=3 jest --verbose --u",
"test:coverage": "FORCE_COLOR=3 jest --verbose --coverage",
"test:watch": "FORCE_COLOR=3 jest --verbose --watchAll",
"lint": "standard",
"lint:fix": "standard --fix",
"snyk-protect": "snyk-protect",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UlisesGascon/check-my-headers.git"
},
"standard": {
"env": [
"jest"
]
},
"keywords": [
"http",
"headers",
"security"
],
"author": {
"name": "Ulises Gascón",
"url": "https://github.com/ulisesGascon"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/UlisesGascon/check-my-headers/issues"
},
"homepage": "https://github.com/UlisesGascon/check-my-headers#readme",
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@snyk/protect": "1.893.0",
"husky": "7.0.4",
"jest": "27.5.1",
"jest-serializer-ansi": "1.0.3",
"standard": "14.3.1",
"standard-version": "9.3.2"
},
"dependencies": {
"chalk": "4.1.2",
"request": "2.88.2",
"request-promise": "4.2.6"
},
"jest": {
"snapshotSerializers": [
"jest-serializer-ansi"
]
},
"snyk": true
}