UNPKG

aimless-sdk

Version:

Enhanced Runtime Application Self-Protection (RASP) and API Fuzzing Engine with advanced threat detection, behavioral analysis, and intelligent response scoring for Node.js applications

77 lines (76 loc) 2.41 kB
{ "name": "aimless-sdk", "version": "1.3.4", "description": "Enhanced Runtime Application Self-Protection (RASP) and API Fuzzing Engine with advanced threat detection, behavioral analysis, and intelligent response scoring for Node.js applications", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "require": "./dist/index.js", "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "sideEffects": false, "scripts": { "build": "tsc", "test": "node test-serverless.js && node test-access-control.js && node test-false-positives.js", "test:advanced": "node tests/security-detection.test.js", "test:polyglot": "node tests/polyglot-unicode.test.js", "test:express": "node test-express-compatibility.js", "test:server": "node test-express-server.js", "test:all": "npm test && npm run test:express && npm run test:polyglot", "test:build": "npm run build && npm test", "validate": "node validate.js", "prepublishOnly": "npm run validate", "verify": "node -e \"const { Aimless } = require('./dist/index.js'); console.log('✅ Package imports successfully');\"", "dev": "tsc --watch", "lint": "eslint src/**/*.ts", "prepare": "npm run build" }, "keywords": [ "security", "rasp", "fuzzing", "xss", "csrf", "injection", "api-security", "runtime-protection", "vulnerability-detection" ], "author": "", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/CamozDevelopment/Aimless-Security.git" }, "homepage": "https://github.com/CamozDevelopment/Aimless-Security#readme", "bugs": { "url": "https://github.com/CamozDevelopment/Aimless-Security/issues" }, "dependencies": { "aimless-sdk": "github:CamozDevelopment/Aimless-Security#v1.3.1" }, "peerDependencies": { "express": "^4.0.0 || ^5.0.0" }, "peerDependenciesMeta": { "express": { "optional": true } }, "devDependencies": { "@types/express": "^4.17.21", "@types/node": "^20.10.0", "@typescript-eslint/eslint-plugin": "^6.13.0", "@typescript-eslint/parser": "^6.13.0", "eslint": "^8.54.0", "jest": "^29.7.0", "typescript": "^5.3.0" }, "engines": { "node": ">=16.0.0" } }