-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "extaws",
"version": "0.0.17",
"description": "Extend Okta Aws Authentication",
"main": "dist/index.js",
"files": [
"dist/"
],
"types": "dist/index.d.ts",
"bin": {
"extaws": "dist/lib/extaws-cli.js"
},
"repository": "[email protected]:helloextend/extaws.git",
"author": "Corey Ryan <[email protected]>",
"license": "MIT",
"scripts": {
"type-check": "tsc --noEmit",
"lint": "eslint . --ext .ts",
"type-check:watch": "yarn run type-check -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "tsc",
"build:test": "webpack --display-error-details",
"build": "yarn run build:types && yarn run build:js",
"prepublish": "yarn clean && yarn build",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"clean": "rm -rf coverage dist",
"start": "node --no-deprecation -r ts-node/register src/lib/extaws-cli.ts"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.335.0",
"@types/elementtree": "^0.1.0",
"@types/ini": "^1.3.30",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.13",
"@types/node": "^14.11.1",
"@types/shelljs": "^0.8.8",
"@types/tough-cookie": "^4.0.0",
"axios": "^1.5.0",
"axios-cookiejar-support": "^4.0.0",
"color": "^3.1.2",
"commander": "^6.1.0",
"elementtree": "^0.1.7",
"htmlparser2": "^4.1.0",
"ini": "^1.3.5",
"inquirer": "^7.3.3",
"keytar": "^6.0.1",
"ora": "^5.1.0",
"shelljs": "^0.8.4",
"tough-cookie": "^4.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"jest": "^26.4.2",
"npx": "^10.2.2",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}