-
-
Notifications
You must be signed in to change notification settings - Fork 140
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 KB
/
package.json
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
{
"name": "aws-extend-switch-roles",
"version": "5.0.2",
"description": "Extend your AWS IAM switching roles by Chrome extension",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"archive": "npm run build; ./bin/archive.sh",
"build": "./bin/build.sh",
"pretest": "./bin/build_test.sh",
"test": "mocha --timeout 10000 src/js/**/*.test.js",
"test_emulator": "playwright test test/emulator/*.spec.js",
"coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tilfinltd/aws-extend-switch-roles.git"
},
"author": "Toshimitsu Takahashi (Tilfin Ltd.)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tilfinltd/aws-extend-switch-roles/issues"
},
"homepage": "https://github.com/tilfinltd/aws-extend-switch-roles#readme",
"dependencies": {
"aesr-config": "^0.5.1"
},
"devDependencies": {
"@playwright/test": "^1.38.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"chai": "^4.3.10",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"rollup": "^4.1.4"
},
"type": "module"
}