-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.2 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.2 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
{
"name": "@cloud-copilot/iam-data",
"version": "0.19.202604231",
"description": "AWS IAM Data",
"repository": {
"type": "git",
"url": "git+https://github.com/cloud-copilot/iam-data.git"
},
"updatedAt": "2026-04-23T05:29:28.853Z",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./data": "./data/"
},
"files": [
"dist/**/*",
"data/**/*"
],
"types": "dist/cjs/index.d.ts",
"scripts": {
"test": "npx vitest --run --coverage",
"clean": "rm -rf dist",
"build": "npx tsc -p tsconfig.cjs.json && npx tsc -p tsconfig.esm.json && ./postbuild.sh",
"release": "npm install && 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 <[email protected]>",
"license": "MIT",
"devDependencies": {
"@cloud-copilot/prettier-config": "^0.1.1",
"@types/node": "^22.5.0",
"@vitest/coverage-v8": "^4.0.18",
"typescript": "^5.5.4",
"vitest": "^4.0.18"
},
"prettier": "@cloud-copilot/prettier-config"
}