-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
30 lines (30 loc) · 1.01 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
{
"name": "cypress-lambda",
"version": "1.0.0",
"description": "This repo demonstrates how to jump through a bunch of hoops to run [Cypress](https://cypress.io) on AWS Lambda.",
"main": "index.js",
"scripts": {
"test": "npm run clean-reports && node index.js && npm run merge-reports && npm run generate-html-report",
"merge-reports": "npx mochawesome-merge --reportDir reports > mochawesome.json",
"generate-html-report": "npx mochawesome-report-generator mochawesome.json",
"clean-reports": "rm -rf reports && mkdir reports"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stuartsan/cypress-lambda.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/stuartsan/cypress-lambda/issues"
},
"homepage": "https://github.com/stuartsan/cypress-lambda#readme",
"devDependencies": {
"aws-sdk": "^2.437.0"
},
"dependencies": {
"glob": "^7.1.3",
"mochawesome-merge": "^1.0.7",
"mochawesome-report-generator": "^3.1.5"
}
}