@cloud-carbon-footprint/aws
Version:
The core logic to get cloud usage data and estimate energy and carbon emissions from Amazon Web Services.
87 lines (86 loc) • 3.06 kB
JSON
{
"name": "@cloud-carbon-footprint/aws",
"version": "0.16.0",
"license": "Apache-2.0",
"description": "The core logic to get cloud usage data and estimate energy and carbon emissions from Amazon Web Services.",
"main": "dist/index.js",
"types": "src/index.ts",
"publishConfig": {
"main": "dist/index.js"
},
"homepage": "https://www.cloudcarbonfootprint.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/cloud-carbon-footprint/cloud-carbon-footprint.git",
"directory": "packages/aws"
},
"keywords": [
"thoughtworks",
"cloud",
"sustainability",
"climate",
"carbon-emissions",
"carbon-footprint"
],
"scripts": {
"precommit": "lint-staged --no-stash && yarn test --coverage --runInBand --bail",
"test": "jest",
"type-check": "tsc --noEmit",
"sonar:scan": "sonar-scanner",
"test:watch": "yarn test --coverage --watchAll",
"build": "rimraf dist && yarn build:tsc && yarn prepack && cp package.json dist && yarn postpack",
"build:workspace": "mkdir -p ../../dist-workspace/packages/aws/dist && cp -R dist ../../dist-workspace/packages/aws && mv ../../dist-workspace/packages/aws/dist/package.json ../../dist-workspace/packages/aws",
"build:update": "node ../../scripts/update-package-dependencies.js aws core common",
"prepack": "ts-node ../../scripts/prepack.ts",
"postpack": "ts-node ../../scripts/postpack.ts",
"build:tsc": "tsc --build tsconfig.json",
"build:watch": "onchange 'src/**/*.ts' -- yarn build",
"view:coverage": "serve coverage/lcov-report",
"clean": "rimraf dist && rimraf coverage && rimraf logs",
"lint": "eslint '*/**/*.ts' --quiet",
"lint:fix": "eslint '*/**/*.ts' --quiet --fix"
},
"dependencies": {
"@cloud-carbon-footprint/common": "^1.15.0",
"@cloud-carbon-footprint/core": "^0.17.3",
"@google-cloud/iam-credentials": "^1.1.1",
"aws-sdk": "^2.927.0",
"aws-sdk-mock": "^5.1.0",
"csvtojson": "^2.0.10",
"moment": "^2.29.1",
"ramda": "^0.29.0"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/jest-when": "^3.5.0",
"@types/node": "^17.0.8",
"@types/source-map-support": "^0.5.3",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^27.4.7",
"jest-when": "^3.5.0",
"lint-staged": "^12.1.7",
"onchange": "^7.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.6.2"
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint",
"prettier --write --ignore-unknown --config ../../.prettierrc.json"
],
"*.{md}": [
"prettier --write --ignore-unknown --config ../../.prettierrc.json"
]
},
"gitHead": "1598cafed299fa7e4c94159b899edc0e07d14965"
}