-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.95 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": "revolver",
"version": "2.0.0",
"type": "module",
"description": "Multipurpose AWS idler script",
"exports": "./invoke.ts",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"lint": "biome check",
"test": "LOG_LEVEL=error mocha --require ts-node/register --require source-map-support/register --recursive --exit test",
"coverage": "c8 npm run test; rimraf ./coverage",
"build": "tsc --build ./tsconfig.json",
"watch": "tsc --build ./tsconfig.json --watch",
"bundle": "npm run clean; npm run build; webpack; zip -9rqj revolver.zip dist",
"bundleTestPrep": "mkdir dist; cp invoke.js dist; cp test/bundle-test-config.yaml dist/bundle-test-config.yaml; cp resources.json dist/bundle-test-resources.json",
"bundleTestRun": "cd dist; CONFIG_FILE=bundle-test-config.yaml node invoke.js",
"bundleTest": "npm run bundle; npm run bundleTestPrep; npm run bundleTestRun",
"cleanIntermediate": "rimraf -g 'plugins/**/**.d.ts' 'plugins/**/*.js' 'drivers/**/*.d.ts' 'drivers/**/*.js' 'lib/**/*.d.ts' 'lib/**/*.js' invoke.d.ts invoke.js revolver.d.ts revolver.js",
"clean": "npm run cleanIntermediate; tsc --build ./tsconfig.json --clean && rimraf revolver.zip dist;",
"start": "CONFIG_FILE=revolver-config.yaml PRETTY_LOG_TIME_ZONE=local node invoke.js"
},
"author": "Alex Bukharov",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-auto-scaling": "^3.687.0",
"@aws-sdk/client-ec2": "^3.687.0",
"@aws-sdk/client-organizations": "^3.687.0",
"@aws-sdk/client-rds": "^3.687.0",
"@aws-sdk/client-redshift": "^3.687.0",
"@aws-sdk/client-s3": "^3.688.0",
"@aws-sdk/client-sns": "^3.687.0",
"@aws-sdk/client-sqs": "^3.687.0",
"@aws-sdk/client-sts": "^3.621.0",
"@aws-sdk/credential-providers": "^3.687.0",
"@aws-sdk/types": "^3.511.0",
"@smithy/node-http-handler": "^3.2.5",
"@supercharge/promise-pool": "^3.2.0",
"csv-stringify": "^6.5.1",
"https-proxy-agent": "^7.0.5",
"jmespath": "^0.16.0",
"js-yaml": "^4.1.0",
"jsonfile": "^6.1.0",
"luxon": "^3.5.0",
"proxy-agent": "^6.4.0",
"ts-deepmerge": "^7.0.1",
"tslog": "^4.9.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/aws-lambda": "^8.10.145",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/jmespath": "^0.15.2",
"@types/js-yaml": "^4.0.9",
"@types/jsonfile": "^6.1.4",
"@types/luxon": "^3.4.2",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"@types/sinon": "^17.0.3",
"c8": "^10.1.2",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.0",
"copy-webpack-plugin": "^12.0.2",
"csv-parse": "^5.5.6",
"mocha": "^10.8.2",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"source-map-support": "^0.5.21",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"zod-to-json-schema": "^3.23.5"
}
}