// npm 패키지
ast-plugin
The simplest abstract syntax tree walker.
버전
8
메인테이너
1
라이선스
MIT
최초 publish
2018-11-12
publisher
atool
tarball
7,716 B
AUTO-PUBLISHED·1개 버전 인덱싱됨·최근 publish: 2018-12-30
// publisher 캠페인by atool
이 계정에서 catch된 패키지 9건고립된 catch가 아닙니다. 동일 publisher가 8개의 다른 패키지를 추가로 발행했고, 모두 파이프라인이 catch했습니다 — 일회성이 아닌 조직적 캠페인의 형태. 아래 링크는 각 형제 catch의 분석으로 이동합니다.
// offending code· @0.0.7· 1 file flagged
llm: benign · 0.85→ 의심 전송지 없음, 원격 실행 형태 없음 — 1 known-vendor host(s).
- @0.0.7··AUTO-PUBLISHED·publisher: atoolheuristic 75/100static flags 1llm benign (0.85) via ollamapublisher-multi-name-burst:5osv-flagged:MAL-2026-4128public-github-push
→ 의심 전송지 없음, 원격 실행 형태 없음 — 1 known-vendor host(s).
// offending code· 1 file flaggedpatterns: 1
--- package/package.json (excerpt) --- { "name": "ast-plugin", "version": "0.0.7", "description": "The simplest abstract syntax tree walker.", "main": "lib/index.js", "scripts": { "test": "jest --no-cache", "coveralls": "cat ./coverage/lcov.info | coveralls", "build": "rimraf ./lib && babel src -d lib" }, "repository": { "type": "git", "url": "git+https://github.com/hustcc/ast-plugin.git" }, "keywords": [ "ast", "plugin", "ast-plugin" ], "author": "hustcc", "license": "MIT", "bugs": { "url": "https://github.com/hustcc/ast-plugin/issues" }, "homepage": "https://github.com/hustcc/ast-plugin#readme", "devDependencies": { "@babel/cli": "^7.1.5", "@babel/core": "^7.1.5", "@babel/plugin-proposal-class-properties": "^7.1.0", "@babel/plugin-transform-spread": "^7.0.0", "@babel/preset-env": "^7.1.5", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^23.6.0", "babel-plugin-version": "^0.2.3", "coveralls": "^3.0.2", "jest": "^23.6.0", "remark-parse": "^6.0.2", "rimraf": "^2.6.2", "unified": "^7.0.1" }, "jest": { "collectCoverage": true, "testEnvironment": "node", "testRegex": "(/__tests__/.*\\.(test|spec))\\.jsx?$", "collectCoverageFrom": [ "src/**/*.{js,jsx}" ] } } --- package.json (entry) --- { "name": "ast-plugin", "version": "0.0.7", "description": "The simplest abstract syntax tree walker.", "main": "lib/index.js", "scripts": { "test": "jest --no-cache", "coveralls": "cat ./coverage/lcov.info | coveralls", "build": "rimraf ./lib && babel src -d lib" }, "repository": { "type": "git", "url": "git+https://github.com/hustcc/ast-plugin.git" }, "keywords": [ "ast", "plugin", "ast-plugin" ], "author": "hustcc", "license": "MIT", "bugs": { "url": "https://github.com/hustcc/ast-plugin/issues" }, "homepage": "https://github.com/hustcc/ast-plugin#readme", "devDependencies": { "@babel/cli": "^7.1.5", "@babel/core": "^7.1.5", "@babel/plugin-proposal-class-properties": "^7.1.0", "@babel/plugin-transform-spread": "^7.0.0", "@babel/preset-env": "^7.1.5", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^23.6.0", "babel-plugin-version": "^0.2.3", "coveralls": "^3.0.2", "jest": "^23.6.0", "remark-parse": "^6.0.2", "rimraf": "^2.6.2", "unified": "^7.0.1" }, "jest": { "collectCoverage": true, "testEnvironment": "node", "testRegex": "(/__tests__/.*\\.(tes --- index.js (entry) --- "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "Ast", { enumerable: true, get: function get() { return _Ast.Ast; } }); Object.defineProperty(exports, "Plugin", { enumerable: true, get: function get() { return _Plugin.Plugin; } }); Object.defineProperty(exports, "setGlobalConfig", { enumerable: true, get: function get() { return _global.setGlobalConfig; } }); exports.version = void 0; var _Ast = require("./Ast"); var _Plugin = require("./Plugin"); var _global = require("./global"); var version = "0.0.7"; exports.version = version;
