-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.12 KB
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
{
"name": "hello-world",
"private": true,
"description": "A playground repo for testing code, build processes, etc.",
"main": "index.js",
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser chrome --headless",
"cypress:run:lighthouse": "cypress run --browser chrome --headless --spec 'tests/cypress/integration/performance/lighthouse.spec.js'",
"cypress:run:load-time": "cypress run --spec 'tests/cypress/integration/performance/load-time.spec.js'",
"test": "npm run cypress:run",
"test:e2e": "npx cypress run --spec=tests/cypress/integration/quick/test.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wpscholar/hello-world.git"
},
"author": {
"name": "Micah Wood",
"email": "micah@wpscholar.com"
},
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/wpscholar/hello-world/issues"
},
"homepage": "https://github.com/wpscholar/hello-world#readme",
"devDependencies": {
"@wordpress/env": "^5.0.0",
"cypress": "^9.4.1",
"cypress-audit": "^1.1.0",
"cypress-terminal-report": "^3.4.2"
}
}