-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 761 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 761 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
{
"name": "puppeteerfirstproject",
"version": "1.0.0",
"description": "First puppeteer project",
"main": "index.js",
"scripts": {
"test:example": "node ./node_modules/mocha/bin/mocha --timeout=30000 ./tests/Custom.commands.helpers.js",
"test:all": "node ./node_modules/mocha/bin/mocha --timeout=30000 ./tests",
"test:device": "node ./node_modules/mocha/bin/mocha --timeout=30000 ./tests/device.emulation.js",
"test:e2e": "node ./node_modules/mocha/bin/mocha --timeout=30000 ./tests/e2e/*.test.js"
},
"keywords": [
"Puppeteer",
"Mocha",
"Chai",
"Automation"
],
"author": "Tabby Toney Douglass",
"license": "ISC",
"dependencies": {
"chai": "^4.2.0",
"mocha": "^8.2.1",
"puppeteer": "^5.5.0"
}
}