UNPKG

ioc-extractor

Version:

IoC (Indicator of Compromise) extractor

92 lines (91 loc) 2.07 kB
{ "name": "ioc-extractor", "version": "8.1.2", "description": "IoC (Indicator of Compromise) extractor", "type": "module", "exports": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "engines": { "node": ">=18" }, "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "bin": { "ioc-extractor": "./dist/bin/ioc-extractor.js" }, "files": [ "dist" ], "tsup": { "format": [ "cjs", "esm" ], "entry": [ "src" ], "dts": true, "clean": true }, "scripts": { "build": "tsup", "watch": "npm run build -- --watch src", "test": "vitest", "coverage": "vitest run --coverage", "lint": "eslint src spec --fix", "format": "prettier --write src spec", "docs": "typedoc", "prepack": "npm run build", "prepare": "husky" }, "lint-staged": { "*.ts": [ "npm run lint", "npm run format" ] }, "keywords": [ "IoC", "Indicator of Compromise" ], "repository": { "type": "git", "url": "git+https://github.com/ninoseki/ioc-extractor.git" }, "author": "Manabu Niseki", "license": "MIT", "bugs": { "url": "https://github.com/ninoseki/ioc-extractor/issues" }, "homepage": "https://github.com/ninoseki/ioc-extractor", "devDependencies": { "@eslint/eslintrc": "^3.2.0", "@eslint/js": "^9.15.0", "@types/eslint__js": "^8.42.3", "@types/get-stdin": "^7.0.0", "@types/node": "22.9.2", "@vitest/coverage-v8": "^2.1.5", "coveralls": "3.1.1", "eslint": "^9.15.0", "eslint-plugin-regexp": "^2.7.0", "eslint-plugin-simple-import-sort": "^12.1.1", "husky": "9.1.7", "lint-staged": "15.2.10", "prettier": "3.3.3", "tsup": "^8.3.5", "tsx": "^4.19.2", "typedoc": "0.26.11", "typescript": "^5.6.2", "typescript-eslint": "^8.15.0", "vitest": "^2.1.5" }, "dependencies": { "commander": "^12.1.0", "get-stdin": "9.0.0", "punycode.js": "^2.3.1" } }