-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 884 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 884 Bytes
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
{
"name": "coverage-360",
"version": "1.0.0",
"description": "Scena 360's e2e testing setup using Jest, Puppeteer, and Github Actions",
"main": "index.js",
"repository": "git@github.com:scena360/coverage-360.git",
"author": "Danilo Joksimovic <5k2q660tv@relay.firefox.com>",
"license": "MIT",
"private": false,
"scripts": {
"start": "http-server -p 8080",
"test:e2e": "jest --config=./e2e/jest.config.js --forceExit"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"http-server": "^0.12.3",
"jest": "^26.6.3",
"jest-environment-puppeteer": "^5.0.3",
"jest-puppeteer": "^5.0.3",
"puppeteer": "^9.1.1"
}
}