UNPKG

ioc-extractor

Version:

IoC (Indicator of Compromise) extractor

93 lines (92 loc) 2.25 kB
{ "name": "ioc-extractor", "version": "8.1.7", "description": "IoC (Indicator of Compromise) extractor", "keywords": [ "Indicator of Compromise", "IoC" ], "homepage": "https://github.com/ninoseki/ioc-extractor", "bugs": { "url": "https://github.com/ninoseki/ioc-extractor/issues" }, "license": "MIT", "author": "Manabu Niseki", "repository": { "type": "git", "url": "git+https://github.com/ninoseki/ioc-extractor.git" }, "bin": { "ioc-extractor": "./dist/bin/ioc-extractor.mjs" }, "files": [ "dist" ], "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "exports": { "import": { "types": "./dist/index.d.mts", "default": "./dist/index.mjs" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } }, "scripts": { "build": "tsdown", "watch": "tsdown --watch", "test": "vitest", "coverage": "vitest run --coverage", "lint": "run-s lint:*", "lint:oxlint": "oxlint . --fix", "lint:eslint": "eslint . --fix --cache", "format": "oxfmt src/ spec/", "docs": "typedoc", "prepack": "npm run build", "prepare": "husky" }, "dependencies": { "commander": "^14.0.3", "get-stdin": "10.0.0", "lru-cache": "^11.2.7", "punycode.js": "^2.3.1" }, "devDependencies": { "@types/get-stdin": "^7.0.0", "@types/node": "25.5.0", "@vitest/coverage-v8": "^4.1.2", "@vitest/eslint-plugin": "^1.6.13", "coveralls": "3.1.1", "eslint": "^10.1.0", "eslint-config-prettier": "^10.1.8", "eslint-plugin-oxlint": "^1.57.0", "eslint-plugin-regexp": "^3.1.0", "eslint-plugin-simple-import-sort": "^12.1.1", "husky": "9.1.7", "jiti": "^2.6.1", "lint-staged": "16.4.0", "npm-run-all2": "^8.0.4", "oxfmt": "^0.42.0", "oxlint": "^1.57.0", "publint": "^0.3.18", "tsdown": "^0.21.7", "tsx": "^4.21.0", "typedoc": "0.28.18", "typescript": "^5.9.3", "typescript-eslint": "^8.58.0", "vitest": "^4.1.2" }, "lint-staged": { "*.ts": [ "npx oxlint --fix", "npx oxfmt --write" ] }, "engines": { "node": ">=20" } }