-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.34 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@bifravst/ci",
"version": "0.0.0-development",
"description": "Sets up the permissions in our CI account for all repositories in this account to be able to use it for CI runs.",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"type": "module",
"scripts": {
"prepare": "husky && check-node-version --package",
"test": "npx globstar -- npx tsx --test --test-reporter spec \"!(node_modules)/**/*.spec.ts\"",
"prepublishOnly": "npx tsc --noEmit false --outDir ./dist -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/ci.git"
},
"bugs": {
"url": "https://github.com/bifravst/ci/issues"
},
"homepage": "https://github.com/bifravst/ci#readme",
"keywords": [
"nordicsemiconductor",
"cellular-iot",
"bifravst",
"aws",
"cdk"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.1.19",
"@bifravst/from-env": "3.0.2",
"@bifravst/prettier-config": "1.1.4",
"@commitlint/config-conventional": "19.6.0",
"@octokit/rest": "21.0.2",
"aws-cdk": "2.173.4",
"aws-cdk-lib": "2.173.4",
"cdk": "2.173.4",
"check-node-version": "4.2.1",
"commitlint": "19.6.1",
"constructs": "10.4.2",
"globstar": "1.0.0",
"husky": "9.1.7",
"tsx": "4.19.2"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"engines": {
"node": ">=22",
"npm": ">=9"
},
"release": {
"branches": [
"saga",
{
"name": "!(saga)",
"prerelease": true
}
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
},
"publishConfig": {
"access": "public"
},
"files": [
"package-lock.json",
"dist",
"LICENSE",
"README.md"
],
"prettier": "@bifravst/prettier-config",
"peerDependencies": {
"@aws-sdk/client-iam": "^3.716.0",
"chalk": "^5.4.1"
}
}