-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.65 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
{
"name": "importer",
"description": "A script to import AWS Resources defined by speee/terraform-aws-sso-assignment automatically.",
"version": "1.0.0",
"author": "Ryoh Akiysohi",
"bin": {
"sso-importer": "./bin/sso-importer.js"
},
"bugs": "https://github.com/speee/terraform-aws-sso-assignment-importer/issues",
"dependencies": {
"@aws-sdk/client-identitystore": "^3.27.0",
"@aws-sdk/client-organizations": "^3.27.0",
"@aws-sdk/client-sso-admin": "^3.27.0",
"@types/node": "^16.7.1",
"exponential-backoff": "^3.1.0",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/node": "^15.0.2",
"@types/yargs": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"engines": {
"node": ">= 14.0.0"
},
"homepage": "https://github.com/speee/terraform-aws-sso-assignment-importer#readme",
"keywords": [
"aws sso",
"terraform",
"terraform module"
],
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/speee/terraform-aws-sso-assignment-importer"
},
"scripts": {
"build": "tsc",
"build:clean": "run-s clean build",
"clean": "rimraf dist",
"import": "ts-node src/index.ts",
"lint": "eslint -f codeframe \"**/*.{ts,js,tsx,jsx}\"",
"lint:fix": "eslint --fix -f codeframe \"**/*.{ts,js,tsx,jsx}\""
}
}