-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.04 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.04 KB
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": "@heathprovost/nawsso",
"version": "1.8.5",
"description": "Node AWS SSO Credentials Helper",
"author": "Heath Provost <galvanash@gmail.com>",
"bin": {
"nawsso": "./bin/run"
},
"homepage": "https://github.com/heathprovost/nawsso",
"license": "MIT",
"main": "dist/commands/index.js",
"repository": "github:heathprovost/nawsso",
"files": [
"/bin",
"/dist",
"/patches",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@aws-sdk/client-sso": "^3.216.0",
"@oclif/core": "^1.19.1",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.1.7",
"bl": "^6.0.0",
"chalk": "^4.1.2",
"ini": "^3.0.1",
"patch-package": "^6.5.0"
},
"devDependencies": {
"@oclif/test": "^2.2.12",
"@types/chai": "^4",
"@types/ini": "^1.3.31",
"@types/mocha": "^9.0.0",
"@types/node": "^14.18.33",
"@types/readable-stream": "^2.3.15",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"chai": "^4",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^9",
"oclif": "^3",
"shx": "^0.3.3",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
},
"oclif": {
"default": ".",
"bin": "nawsso",
"dirname": "nawsso",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " "
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"prepack": "npm run build && oclif manifest",
"postinstall": "patch-package",
"postpack": "shx rm -f oclif.manifest.json"
},
"engines": {
"node": ">=14.0.0"
},
"bugs": "https://github.com/heathprovost/nawsso/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}