-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 886 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 886 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
28
29
30
31
32
33
34
35
36
37
{
"name": "e2e-scripts",
"version": "3.17.0-dev",
"description": "E2E test scripts for PWA Kit",
"main": "index.js",
"private": true,
"scripts": {
"test": "pwa-kit-dev test",
"test:watch": "pwa-kit-dev test --watch",
"test:coverage": "pwa-kit-dev test --coverage",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix"
},
"devDependencies": {
"@actions/core": "^1.11.1",
"@aws-sdk/client-s3": "3.450.0",
"@aws-sdk/client-sts": "3.450.0",
"@salesforce/pwa-kit-dev": "3.17.0-dev",
"jest": "^29.7.0"
},
"jest": {
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"testMatch": [
"<rootDir>/scripts/**/*.test.js"
],
"testPathIgnorePatterns": [
"<rootDir>/tests/",
"<rootDir>/node_modules/",
"<rootDir>/build/"
]
},
"dependencies": {
"dotenv": "^17.2.1"
}
}