-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.86 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.86 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
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
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@cloud-copilot/iam-simulate",
"version": "0.1.130",
"description": "Simulate evaluation of AWS IAM policies",
"repository": {
"type": "git",
"url": "git+https://github.com/cloud-copilot/iam-simulate.git"
},
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist/**/*"
],
"types": "dist/cjs/index.d.ts",
"scripts": {
"build": "npx tsc -p tsconfig.cjs.json && npx tsc -p tsconfig.esm.json && ./postbuild.sh",
"clean": "rm -rf dist",
"test": "npx vitest --run --coverage",
"release": "npm run clean && npm run build && npm run test && npm run format-check && npm publish",
"format": "npx prettier --write src/",
"format-check": "npx prettier --check src/"
},
"keywords": [
"AWS",
"IAM"
],
"author": "David Kerber <dave@cloudcopilot.io>",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/cloud-copilot/iam-simulate/issues"
},
"homepage": "https://github.com/cloud-copilot/iam-simulate#readme",
"devDependencies": {
"@cloud-copilot/prettier-config": "^0.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.4",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "^22.5.0",
"@vitest/coverage-v8": "^4.0.18",
"semantic-release": "^25.0.3",
"typescript": "^5.5.4",
"vitest": "^4.0.18"
},
"dependencies": {
"@cloud-copilot/iam-data": ">=0.15.202511222 <1.0.0",
"@cloud-copilot/iam-policy": "^0.1.79",
"@cloud-copilot/iam-utils": "^0.1.54"
},
"prettier": "@cloud-copilot/prettier-config",
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "feat",
"release": "patch"
},
{
"type": "fix",
"release": "patch"
},
{
"breaking": true,
"release": "patch"
},
{
"type": "*",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]"
}
],
[
"@semantic-release/github",
{
"assets": []
}
]
]
}
}