-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.2 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
{
"name": "@alheimsins/webquality",
"description": "Test your site using Lighthouse and Security Headers",
"version": "2.0.7",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Geir Gåsodden",
"email": "geir.gasodden@pythonia.no",
"url": "https://github.com/zrrrzzt"
},
"main": "index.js",
"engines": {
"node": ">=16.15.0"
},
"files": [
"lib/",
"index.js"
],
"scripts": {
"test": "standard && npm audit && ava",
"test-offline": "standard && ava",
"coverage": "nyc ava",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install",
"prepare": "husky install"
},
"keywords": [
"web",
"quality",
"test",
"lighthouse",
"securityheaders"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Alheimsins/webquality.git"
},
"bugs": {
"url": "https://github.com/Alheimsins/webquality/issues"
},
"homepage": "https://github.com/Alheimsins/webquality#readme",
"devDependencies": {
"ava": "4.3.3",
"husky": "8.0.1",
"nyc": "15.1.0",
"standard": "17.0.0"
},
"dependencies": {
"axios": "0.27.2"
}
}