forked from NextChapterSoftware/ec2-action-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.44 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
{
"name": "ec2-action-builder",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc && ncc build lib/main.js",
"format": "prettier --write src/**/*.ts",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' DOTENV_CONFIG_PATH=.env mocha -r dotenv/config -r ts-node/register './tests/**/*.ts' -timeout 20000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teecp/ec2-action-builder.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/teecp/ec2-action-builder/issues"
},
"homepage": "https://github.com/teecp/ec2-action-builder#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.2.0",
"@aws-sdk/client-ec2": "^3.569.0",
"@aws-sdk/client-pricing": "^3.569.0",
"@aws-sdk/client-sts": "^3.569.0",
"@smithy/types": "^2.12.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@faker-js/faker": "^6.3.1",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"@vercel/ncc": "^0.33.4",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}