-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "awsx",
"description": "AWS CLI profile switcher with MFA support",
"version": "1.4.2",
"author": "Neo Financial Engineering <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/neofinancial/awsx"
},
"engines": {
"node": ">=10.0.0"
},
"bin": {
"_awsx_prompt": "./bin/awsx.js",
"_awsx": "./bin/run.sh"
},
"scripts": {
"start": "ts-node-script src/app.ts",
"start:build": "node bin/awsx.js",
"build": "NODE_ENV=production rollup -c",
"watch": "rollup -c -w",
"test": "NODE_ENV=test jest",
"clean": "rimraf build",
"lint": "eslint \"**/*.{ts,js}\"",
"format": "prettier --write \"**/*.{ts,js,json,yaml,yml,md}\"",
"format:check": "prettier --debug-check \"**/*.{ts,js,json,yaml,yml,md}\"",
"pre-commit": "lint-staged",
"prepublishOnly": "rimraf build && NODE_ENV=production rollup -c"
},
"files": [
"bin",
"build"
],
"lint-staged": {
"*.{ts,js}": [
"eslint"
],
"*.{ts,js,json,yaml,yml,md}": [
"prettier --write"
]
},
"dependencies": {
"update-notifier": "^4.1.3"
},
"devDependencies": {
"@aws-sdk/client-iam": "^3.43.0",
"@aws-sdk/client-sts": "^3.43.0",
"@aws-sdk/credential-providers": "^3.43.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/ini": "^1.3.31",
"@types/jest": "^27.0.2",
"@types/node": "^13.13.52",
"@types/prompts": "^2.0.14",
"@types/update-notifier": "^2.5.2",
"@types/yargs": "^15.0.14",
"chalk": "^4.1.2",
"eslint": "^7.32.0",
"eslint-config-neo": "^0.6.2",
"husky": "^7.0.0",
"ini": "1.3.8",
"jest": "^27.2.5",
"lint-staged": "11.2.3",
"prettier": "2.4.1",
"prompts": "^2.4.2",
"rimraf": "3.0.2",
"rollup": "^2.60.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-uglify": "^5.0.2",
"ts-jest": "^27.0.7",
"ts-node": "10.3.0",
"tslib": "^2.3.1",
"typescript": "4.4.4",
"yargs": "15.4.1"
}
}