forked from joytocode/lighthouse-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.42 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
{
"name": "lighthouse-lambda",
"version": "3.1.1",
"description": "Run Google Chrome Lighthouse on AWS Lambda.",
"engines": {
"node": "8.10.x"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "standard --fix",
"pretest": "standard",
"build:install": "docker run --rm -v \"$PWD\":/var/task lambci/lambda:build-nodejs8.10 bash -c \"rm -rf node_modules && npm install\"",
"build": "docker run --rm -v \"$PWD\":/var/task lambci/lambda:build-nodejs8.10 bash -c \"rm -f *.zip && zip lighthouse-lambda.zip -r lib node_modules bin test.js package.json\"",
"test": "docker run --rm -v \"$PWD\":/var/task lambci/lambda:nodejs8.10 test.handler '{}'",
"test:results": "docker run --rm -v \"$PWD\":/var/task --user root lambci/lambda:nodejs8.10 test.handler '{\"saveResults\":true}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joytocode/lighthouse-lambda.git"
},
"keywords": [
"chrome",
"lighthouse",
"aws",
"lambda",
"headless",
"serverless",
"devtools"
],
"author": "JoyToCode <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joytocode/lighthouse-lambda/issues"
},
"homepage": "https://github.com/joytocode/lighthouse-lambda#readme",
"dependencies": {
"@serverless-chrome/lambda": "^1.0.0-54",
"lighthouse": "^3.0.3"
},
"devDependencies": {
"standard": "^11.0.1"
}
}