-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@saml-to/assume-aws-role-action",
"version": "1.0.13",
"description": "Assume an AWS Role using SAML.to",
"repository": "[email protected]:saml-to/assume-aws-role-action.git",
"author": "Scaffoldly",
"bugs": {
"url": "https://github.com/saml-to/assume-aws-role-action/issues"
},
"homepage": "https://github.com/saml-to/assume-aws-role-action#readme",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "webpack",
"start": "ts-node src/index.ts",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --quiet --fix && yarn run prettier --write 'src/**/*.{js,ts,tsx}'",
"openapi": "openapi-generator -g axios -i .scaffoldly/$NODE_ENV -o api -r auth-sls-rest-api github-sls-rest-api"
},
"main": "dist/main.js",
"bin": {
"saml-to": "dist/main.js"
},
"files": [
"dist/main.js",
"dist/main.js.map"
],
"engines": {
"node": ">=14"
},
"engineStrict": true,
"keywords": [
"saml",
"saml.to",
"aws",
"iam",
"scaffoldly",
"typescript"
],
"dependencies": {
"@actions/core": "^1.10.0",
"@aws-sdk/client-sts": "^3.43.0",
"axios": "^0.24.0",
"which": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@scaffoldly/openapi-generator": "^1.0.22",
"@types/inquirer": "^8.1.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "14",
"@types/which": "^2.0.1",
"@types/yargs": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.2.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-typescript": "14.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"source-map": "^0.7.3",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
}
}