UNPKG

@deeplint/scanner-aws

Version:

DeepScanner AWS collects cloud resources and outputs them in standard format for further processing

77 lines (76 loc) 2.08 kB
{ "name": "@deeplint/scanner-aws", "version": "0.1.0", "description": "DeepScanner AWS collects cloud resources and outputs them in standard format for further processing", "license": "MPL-2.0", "repository": "https://github.com/deeplint/deepscanner", "author": "DeepLint Dev", "keywords": [ "Cloud", "AWS", "Scanner", "Resource" ], "files": [ "lib" ], "main": "lib/index", "types": "lib/index", "scripts": { "clean": "rimraf lib", "format": "prettier --write \"{src,test}/**/*.ts\"", "lint": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix", "prepublishOnly": "npm run build", "build": "npm run format && npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty", "test": "npm run build && ts-mocha --recursive \"test/**/*-spec.ts\"", "coverage": "nyc --include=\"src/**/*.ts\" --reporter=text --reporter=html --reporter=lcov ts-mocha --recursive \"test/**/*-spec.ts\"", "watch": "npm run build -- --watch", "watch:test": "npm run test -- --watch" }, "dependencies": { "@deepscanner/base": "^0.1.1", "aws-sdk": "^2.695.0" }, "devDependencies": { "@types/chai": "^4.1.6", "@types/expect": "^24.3.0", "@types/lodash": "^4.14.155", "@types/mocha": "^7.0.2", "@types/node": "^10.11.4", "@typescript-eslint/eslint-plugin": "^3.2.0", "@typescript-eslint/parser": "^3.2.0", "aws-sdk-mock": "^5.1.0", "chai": "^4.2.0", "coveralls": "^3.0.2", "eslint": "^7.2.0", "eslint-config-prettier": "^6.11.0", "eslint-plugin-import": "^2.21.1", "eslint-plugin-prettier": "^3.1.3", "mocha": "^7.2.0", "nyc": "^15.1.0", "prettier": "^2.0.5", "rimraf": "^2.6.2", "ts-mocha": "^7.0.0", "ts-node": "^8.10.2", "typescript": "^3.9.5" }, "engines": { "node": ">=10.0.0" }, "nyc": { "include": [ "src/**/*.ts" ], "exclude": [ "lib" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ], "reporter": [], "all": true } }