-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
53 lines (53 loc) · 1.5 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
{
"name": "@earnest/aws-sts",
"version": "1.0.1",
"description": "Generation of AWS STS tokens via SAML authentication.",
"main": "src/index.js",
"engines": {
"node": ">= 4.0.0"
},
"scripts": {
"lint": "./node_modules/.bin/eslint .",
"lint-changed": "git diff --name-only --cached --relative | grep '\\.js$' | xargs ./node_modules/.bin/eslint",
"start": "node src/index.js",
"start-debug": "DEBUG=true node src/index.js",
"start-docker": "docker-compose run --rm app",
"test": "./node_modules/.bin/mocha --recursive test",
"test-docker": "docker-compose run --rm --entrypoint ./node_modules/.bin/mocha app --recursive test",
"docker-shell": "docker-compose run --rm --entrypoint bash app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meetearnest/aws-sts.git"
},
"keywords": [
"aws",
"sts",
"saml"
],
"author": "Brian Romanko",
"license": "ISC",
"bugs": {
"url": "https://github.com/meetearnest/aws-sts/issues"
},
"homepage": "https://github.com/meetearnest/aws-sts#readme",
"dependencies": {
"argparse": "^1.0.9",
"aws-sdk": "^2.478.0",
"clui": "^0.3.1",
"co": "^4.6.0",
"coinquirer": "0.0.5",
"colors": "^1.1.2",
"ini": "^1.3.4",
"mkdirp": "^0.5.1",
"nightmare": "^2.10.0",
"thunkify": "^2.1.2",
"xml2js": "^0.4.17"
},
"devDependencies": {
"@earnest/eslint-config": "latest",
"eslint": "~5.3.0",
"eslint-plugin-mocha": "~5.3.0",
"mocha": "~6.1.4"
}
}