sca-tool
Version:
Universal static code analysis tool for calculating API operation costs across multiple frameworks (NestJS, Express, Fastify)
97 lines (96 loc) • 2.17 kB
JSON
{
"name": "sca-tool",
"version": "1.0.5",
"description": "Universal static code analysis tool for calculating API operation costs across multiple frameworks (NestJS, Express, Fastify)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"sca-tool.config.json"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./cli": {
"import": "./dist/cli.js",
"require": "./dist/cli.js"
},
"./config": {
"import": "./dist/config.js",
"require": "./dist/config.js"
}
},
"bin": {
"static-code-analyzer": "./dist/cli.js",
"sca": "./dist/cli.js"
},
"scripts": {
"build": "bun run tsc",
"dev": "bun run tsc --watch",
"prepublishOnly": "bun run build",
"test": "bun test",
"lint": "bun run eslint src/**/*.ts",
"start": "bun run dist/cli.js"
},
"dependencies": {
"typescript": "^5.3.0",
"@types/node": "^20.10.0",
"glob": "^10.3.0",
"chalk": "^4.1.2",
"commander": "^11.0.0"
},
"devDependencies": {
"ts-node": "^10.9.0",
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"eslint": "^8.57.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
},
"keywords": [
"sca",
"static-code-analyzer",
"static-analysis",
"code-analysis",
"api-cost",
"database-operations",
"nestjs",
"typescript",
"performance",
"optimization",
"prisma",
"typeorm",
"mongoose",
"supabase"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mtalhazulf/sca-tool.git"
},
"author": "mtalhazulf",
"license": "MIT",
"bugs": {
"url": "https://github.com/mtalhazulf/sca-tool/issues"
},
"homepage": "https://github.com/mtalhazulf/sca-tool#readme",
"engines": {
"node": ">=16.0.0",
"bun": ">=1.0.0"
},
"packageManager": "bun@1.2.18",
"trustedDependencies": [
"typescript"
],
"bun": {
"run": {
"env": {
"NODE_ENV": "production"
}
}
}
}