serverless-plugin-arn-prefixer
Version:
A serverless plugin that injects custom ARN properties for building AWS resource ARNs
89 lines • 2.36 kB
JSON
{
"name": "serverless-plugin-arn-prefixer",
"version": "1.0.25",
"description": "A serverless plugin that injects custom ARN properties for building AWS resource ARNs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./runtime": {
"types": "./runtime.d.ts",
"default": "./runtime.js"
}
},
"keywords": [
"serverless",
"plugin",
"arn",
"aws",
"serverless-plugin",
"aws-arn",
"devops",
"infrastructure"
],
"author": {
"name": "DevSquad",
"email": "marcelo@devsquad.email",
"url": "https://www.grupokingdom.com/devsquad"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git@gitlab.com:dev_squad/repo/tooling/serverless/arn-prefixer.git"
},
"homepage": "https://gitlab.com/dev_squad/repo/tooling/serverless/arn-prefixer#readme",
"bugs": {
"url": "https://gitlab.com/dev_squad/repo/tooling/serverless/arn-prefixer/issues"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist/**/*",
"runtime.js",
"runtime.d.ts",
"README.md",
"LICENSE"
],
"peerDependencies": {
"serverless": ">=2.0.0"
},
"dependencies": {
"@hyperdrive.bot/serverless-utils": "^1.0.9",
"aws-sdk": "^2.1600.0"
},
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"clean": "rm -rf dist",
"clean:runtime": "echo 'Runtime files are generated in the target project directory'",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"devDependencies": {
"@types/aws-sdk": "^0.0.42",
"@types/jest": "^30.0.0",
"@types/node": "^24.4.0",
"@types/serverless": "^3.12.27",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"serverless": "^4.18.2",
"ts-jest": "^29.4.1",
"tsup": "^8.0.1",
"typescript": "^5.9.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}