forked from bgshacklett/samlogin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.23 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
{
"name": "samlogin",
"version": "1.3.0",
"description": "This tool uses Puppeteer (https://github.com/GoogleChrome/puppeteer) to intercept SAML logins to AWS and store the credentials in a credentials file.",
"repository": "https://github.com/bgshacklett/samlogin.git",
"author": "Brian G. Shacklett",
"license": "MIT",
"bin": {
"samlogin": "index.js"
},
"dependencies": {
"aws-sdk": "^2.307.0",
"chalk": "^2.4.2",
"common-tags": "^1.8.0",
"js-yaml": "^3.12.0",
"jsdom": "^12.0.0",
"libsaml": "1.0.0",
"locate-path": "^3.0.0",
"minimist": "^1.2.0",
"printj": "^1.2.1",
"puppeteer": "^5.3.1",
"snyk": "^1.189.0",
"unexpected": "^10.39.0",
"winston": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^7.5.0",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"gulp": "^4.0.0",
"gulp-eslint": "^5.0.0",
"gulp-mocha": "^6.0.0",
"husky": "^1.3.1",
"mocha": "^8.1.3"
},
"scripts": {
"test": "mocha",
"test-debug": "mocha --inspect-brk",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"snyk": true
}