-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.21 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
73
74
75
76
77
78
79
{
"name": "@sixxgate/awspass",
"version": "0.6.0",
"description": "Store credentials in the system keyring, while using only temporary tokens for AWS CLI and compatible tools",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "npm run build.production",
"awspass": "bin/awspass.cjs",
"build.production": "webpack --mode=production",
"build.development": "webpack --mode=development",
"build": "npm run build.production",
"lint": "eslint src/**/*.ts *.cjs",
"fix": "eslint --fix src/**/*.ts *.cjs",
"prepare": "husky install"
},
"author": "Matthew Holder",
"repository": "github:6XGate/awspass",
"license": "GPL-2.0",
"bin": {
"awspass": "bin/awspass.cjs"
},
"engines": {
"node": ">=14"
},
"files": [
"bin/awspass.cjs",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.137.0",
"commander": "^9.4.0",
"common-tags": "^1.8.2",
"env-paths": "^3.0.0",
"execa": "^6.1.0",
"ini": "^3.0.0",
"keytar": "^7.9.0",
"kleur": "^4.1.5",
"logform": "^2.4.2",
"luxon": "^3.0.1",
"make-dir": "^3.1.0",
"prompts": "^2.4.2",
"spdx-license-list": "^6.6.0",
"totp-generator": "^0.0.13",
"vahvista": "^1.2.0",
"which": "^2.0.2",
"winston": "^3.8.1"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/common-tags": "^1.8.1",
"@types/ini": "^1.3.31",
"@types/luxon": "^2.4.0",
"@types/node": "14.*",
"@types/prompts": "2.0.*",
"@types/totp-generator": "^0.0.4",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"ts-loader": "^9.3.1",
"type-fest": "^2.17.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0",
"webpack-notifier": "^1.15.0",
"webpackbar": "^5.0.2"
}
}