-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.12 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.12 KB
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
{
"name": "aws-ecs-deployer",
"version": "0.1.0",
"description": "",
"main": "build/dist/index.js",
"bin": "build/dist/bin.js",
"scripts": {
"test": "rimraf 'build/coverage' && jest",
"test-unit": "rimraf 'build/coverage/unit' && jest --config=jest.unit.config.js",
"lint": "eslint --max-warnings=0 .",
"watch-build": "rimraf 'build/*' && tsc --watch",
"watch-test": "rimraf 'build/coverage' && jest --watchAll",
"all": "npm run build && npm run test && npm run lint",
"build": "rimraf 'build/*' && tsc",
"check": "npm run test && npm run lint",
"develop": "rimraf 'build/*' && node 'develop.js'"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-ecr": "^3.137.0",
"@aws-sdk/client-sts": "^3.128.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"jest": "^27.4.7",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
}
}