-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "aws-codepipeline-waiter",
"version": "2.3.1",
"description": "An AWS lambda for a deployment AWS code-pipeline to monitor and wait for another pipeline.",
"main": "src/index.js",
"keywords": [
"aws",
"code-pipeline",
"monitoring",
"waiter",
"lambda",
"nodejs"
],
"author": "Xavier Thomas",
"license": "BSD-3-Clause",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "babel ./src -d dist --ignore **/*.test.js,**/mocks.js && cp README.md dist/README.md && cp LICENSE dist/LICENSE",
"lint": "eslint --fix ./src",
"cfn-lint": "cfn-lint codepipeline-waiter.yaml",
"lint.ci": "eslint ./src",
"mutate": "stryker run",
"precommit": "yarn audit && yarn lint && yarn test",
"test": "jest --config=jest.config.json"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"dependencies": {
"aws-sdk": "^2.1482.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.2",
"@stryker-mutator/babel-transpiler": "^4.0.0",
"@stryker-mutator/core": "^7.3.0",
"@stryker-mutator/javascript-mutator": "^4.0.0",
"@stryker-mutator/jest-runner": "^7.3.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jest-sonar": "^0.2.16",
"prettier": "^3.0.3"
}
}