-
-
Notifications
You must be signed in to change notification settings - Fork 137
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
40
41
{
"name": "aws-extend-switch-roles",
"version": "6.0.0",
"description": "Extend your AWS IAM switching roles by Chrome extension",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"archive": "npm run build; ./bin/archive.sh",
"archive:dev": "npm run build:dev; ./bin/archive.sh",
"build": "./bin/build.sh",
"build:dev": "./bin/build.sh --dev",
"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.6.0"
},
"devDependencies": {
"@playwright/test": "^1.49.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"chai": "^4.5.0",
"jsdom": "^25.0.1",
"mocha": "^10.8.2",
"rollup": "^4.30.1"
},
"type": "module"
}