-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.22 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
{
"name": "gpagespeed",
"description": "Analyze a webpage with Google PageSpeed",
"version": "8.0.2",
"license": "MIT",
"author": {
"name": "Geir Gåsodden",
"email": "geir.gasodden@pythonia.no",
"url": "https://github.com/zrrrzzt"
},
"main": "index.js",
"engines": {
"node": ">=14.17.3"
},
"scripts": {
"test": "standard && tap --reporter=spec test/**/*.js",
"test-offline": "standard && tap --reporter=spec test/**/*.js",
"coverage": "tap test/**/*.js --coverage",
"coveralls": "tap --cov --coverage-report=lcov test/**/*.js && cat coverage/lcov.info | coveralls",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"keywords": [
"pagespeed",
"insights"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zrrrzzt/gpagespeed.git"
},
"bugs": {
"url": "https://github.com/zrrrzzt/gpagespeed/issues"
},
"homepage": "https://github.com/zrrrzzt/gpagespeed#readme",
"dependencies": {
"googleapis": "81.0.0",
"valid-url": "1.0.9"
},
"devDependencies": {
"coveralls": "3.1.1",
"standard": "16.0.4",
"tap": "15.1.5"
},
"tap": {
"check-coverage": false
}
}