-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "@aws-actions/codebuild-run-build",
"version": "1.0.4",
"description": "Execute CodeBuild::startBuild for the current repo.",
"main": "dist/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",
"format:check": "prettier --check -c *.js *.json *.md test/*.js; eslint --fix **.js test/**.js",
"package": "ncc build index.js -o dist",
"build": "ncc build index.js -o dist",
"test": "mocha"
},
"author": "aws-crypto-tools-team@amazon.com",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.0.3",
"@actions/github": "^5.1.1",
"@aws-sdk/client-cloudwatch-logs": "^3.441.0",
"@aws-sdk/client-codebuild": "^3.444.0",
"uuid": "^3.4.0",
"yargs": "^15.3.1"
},
"bin": "./local.js",
"files": [
"*.js"
],
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"chai": "^4.2.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^6.10.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"mocha": "^10.1.0",
"mocha-each": "^2.0.1",
"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"
]
}
}