-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
38 lines (38 loc) · 930 Bytes
/
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
{
"name": "aws-sso-credentials-getter",
"version": "2.0.1",
"repository": "[email protected]:PredictMobile/aws-sso-credentials-getter.git",
"license": "MIT",
"author": "Warrick Hill <[email protected]>",
"type": "module",
"main": "./lib/index.js",
"bin": {
"ssocred": "./bin/index.js"
},
"scripts": {
"fix": "yarn prettier --write .",
"format": "yarn fix"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --check"
]
},
"dependencies": {
"aws-sdk": "^2.849.0",
"commander": "^11.0.0",
"ini": "^2.0.0"
},
"devDependencies": {
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.2.1",
"prettier-plugin-packagejson": "^2.2.10"
},
"preferGlobal": true,
"pkg": {
"options": [
"experimental-modules"
]
}
}