-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
82 lines (82 loc) · 2.14 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
80
81
82
{
"name": "aws-cost-saver",
"description": "A tiny CLI tool to help save costs in development environments when you're asleep and don't need them!",
"version": "0.2.1",
"author": "aramalipoor",
"bin": {
"aws-cost-saver": "./bin/run"
},
"bugs": "https://github.com/aramalipoor/aws-cost-saver/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.0",
"aws-sdk": "^2.730.0",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"cli-ux": "^5.4.10",
"enquirer": "^2.3.6",
"inquirer": "^7.3.3",
"listr2": "2.6.2",
"lodash": "^4.17.19",
"nock": "^13.0.4",
"tslib": "^1.13.0",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.6",
"@types/aws-sdk": "^2.7.0",
"@types/figures": "^3.0.1",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.159",
"@types/node": "^10.17.28",
"@types/url-parse": "^1.4.3",
"aws-sdk-mock": "^5.1.0",
"codecov": "^3.7.2",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.1.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"globby": "^10.0.2",
"jest": "^26.4.2",
"jest-mock-process": "^1.4.0",
"prettier": "^1.19.1",
"ts-jest": "^26.3.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/aramalipoor/aws-cost-saver",
"keywords": [
"aws",
"cost",
"cost-saving"
],
"license": "MIT",
"main": "dist/index.js",
"oclif": {
"commands": "./dist/commands",
"bin": "aws-cost-saver",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "aramalipoor/aws-cost-saver",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf dist && tsc --build tsconfig.json && oclif-dev manifest",
"test": "jest --coverage --runInBand"
},
"types": "dist/index.d.ts"
}