forked from aws-actions/aws-codebuild-run-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "@aws-actions/codebuild-run-build",
"version": "1.0.4",
"description": "Execute CodeBuild::startBuild for the current repo.",
"main": "index.js",
"scripts": {
"lint": "prettier -c *.js *.json *.md test/*.js; eslint **.js test/**.js",
"format": "prettier --write -c *.js *.json *.md test/*.js; eslint --fix **.js test/**.js",
"package": "ncc build index.js -o dist",
"test": "mocha"
},
"author": "aws-crypto-tools-team@amazon.com",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"aws-sdk": "^2.814.0",
"uuid": "^3.4.0",
"yargs": "^15.3.1"
},
"bin": "./local.js",
"files": [
"*.js"
],
"devDependencies": {
"@zeit/ncc": "^0.21.1",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"husky": "^4.3.8",
"lint-staged": "^10.1.2",
"mocha": "^10.1.0",
"prettier": "^2.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write --ignore-path dist/**",
"eslint --fix --ignore-pattern dist/**"
],
"*.{json,md}": [
"prettier --write"
]
}
}