-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 906 Bytes
/
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
{
"name": "aws-ecs-metadata",
"version": "0.0.4",
"description": "A library to extract ECS Task metadata from running containers",
"main": "lib/index.js",
"scripts": {
"build": "tsc -p .",
"check": "npm run compile && npm run lint:all",
"compile:watch": "tsc --watch --noEmit --skipLibCheck",
"compile": "tsc --noEmit --skipLibCheck"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/the-curve-consulting/aws-ecs-metadata.git"
},
"keywords": [
"AWS",
"ECS",
"Metadata"
],
"author": "Paul Ridgway",
"license": "ISC",
"bugs": {
"url": "https://github.com/the-curve-consulting/aws-ecs-metadata/issues"
},
"homepage": "https://github.com/the-curve-consulting/aws-ecs-metadata#readme",
"devDependencies": {
"@types/node": "^22.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}