-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1022 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1022 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
38
39
40
{
"name": "aws-devicefarm-mobile-device-testing",
"version": "1.0.0",
"description": "Carries out an Automated Test on AWS Device Farm",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint **.js",
"package": "rollup --config rollup.config.js",
"test": "vitest run --coverage"
},
"keywords": [
"AWS",
"GitHub",
"Actions",
"JavaScript"
],
"author": "AWS",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/github": "^9.0.0",
"@aws-sdk/client-device-farm": "^3.1015.0",
"axios": "^1.13.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@vitest/coverage-v8": "^4.1.1",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-vitest": "^7.0.1",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"mock-fs": "^5.5.0",
"rollup": "^4.60.0",
"vitest": "^4.1.1"
}
}