-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.69 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@enter-at/iac-label",
"version": "1.1.0",
"description": "TypeScript library for generating consistent resource names and tags in cloud infrastructure, designed for use with Infrastructure as Code (IaC).",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest --reporters jest-progress-bar-reporter --no-cache",
"test:ci": "npm run test -- --coverage --ci --reporters=jest-junit --maxWorkers=1",
"build": "tsc -p tsconfig.build.json",
"prebuild": "rimraf ./dist",
"postbuild": "cp LICENSE README.md package.json dist/"
},
"keywords": [
"cloud",
"infrastructure",
"iac",
"label",
"resource",
"tag"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/enter-at/iac-label.git"
},
"bugs": {
"url": "https://github.com/enter-at/iac-label/issues"
},
"homepage": "https://github.com/enter-at/iac-label#readme",
"author": "Steffen Leistner",
"license": "MIT",
"peerDependencies": {
"typescript": "^5.7.2 || ^7.0.0"
},
"devDependencies": {
"@faker-js/faker": "9.9.0",
"@tsconfig/node24": "24.0.0",
"@types/node": "24.13.3",
"@types/jest": "^30.0.0",
"jest": "^30.0.0",
"ts-jest": "29.4.12",
"ts-node": "10.9.2",
"jest-junit": "16.0.0",
"jest-progress-bar-reporter": "1.0.25",
"rimraf": "6.1.3"
},
"jest-junit": {
"outputDirectory": "test-reports/jest",
"outputName": "report.xml"
}
}