forked from aws-actions/aws-cloudformation-github-deploy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "aws-actions-aws-cloudformation-github-deploy",
"version": "1.0.3",
"description": "Deploys a AWS CloudFormation stack",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"pack": "ncc build",
"precommit": "lint-staged",
"test": "DEBUG=jest eslint **/*.ts && jest --coverage --verbose",
"all": "npm run build && npm run precommit && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-actions/aws-cloudformation-github-deploy.git"
},
"keywords": [
"AWS",
"GitHub",
"Actions",
"JavaScript"
],
"author": "AWS",
"license": "MIT",
"bugs": {
"url": "https://github.com/aws-actions/aws-cloudformation-github-deploy/issues"
},
"homepage": "https://github.com/aws-actions/aws-cloudformation-github-deploy#readme",
"husky": {
"hooks": {
"pre-commit": "npm run precommit",
"pre-push": "npm run test"
}
},
"dependencies": {
"@actions/core": "^1.2.4",
"@types/axios": "^0.14.0",
"aws-sdk": "^2.725.0",
"axios": "^0.21.4"
},
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/node": "^14.0.26",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"@zeit/ncc": "^0.22.3",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^23.18.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-circus": "^26.2.2",
"js-yaml": "^3.14.0",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
}
}