Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 PerimeterX
Copyright (c) 2025 Human Security

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# flAST - FLat Abstract Syntax Tree
[![Run Tests](https://github.com/PerimeterX/flast/actions/workflows/node.js.yml/badge.svg?branch=main)](https://github.com/PerimeterX/flast/actions/workflows/node.js.yml)
[![Run Tests](https://github.com/HumanSecurity/flast/actions/workflows/node.js.yml/badge.svg?branch=main)](https://github.com/HumanSecurity/flast/actions/workflows/node.js.yml)
[![Downloads](https://img.shields.io/npm/dm/flast.svg?maxAge=43200)](https://www.npmjs.com/package/flast)

Efficient, flat, and richly-annotated JavaScript AST manipulation for code transformation, analysis, and more.
Expand All @@ -25,7 +25,7 @@ npm install flast

### Clone the Repo
```bash
git clone git@github.com:PerimeterX/flast.git
git clone git@github.com:HumanSecurity/flast.git
cd flast
npm install
```
Expand Down Expand Up @@ -226,8 +226,8 @@ console.log(result); // var a = b; var b = 42; console.log(b);
---

## Projects Using flAST
- **[Obfuscation-Detector](https://github.com/PerimeterX/obfuscation-detector):** Uses flAST to analyze and detect unique obfuscation in JavaScript code.
- **[REstringer](https://github.com/PerimeterX/restringer):** Uses flAST for advanced code transformation and analysis.
- **[Obfuscation-Detector](https://github.com/HumanSecurity/obfuscation-detector):** Uses flAST to analyze and detect unique obfuscation in JavaScript code.
- **[REstringer](https://github.com/HumanSecurity/restringer):** Uses flAST for advanced code transformation and analysis.

---

Expand Down
100 changes: 50 additions & 50 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/PerimeterX/flast.git"
"url": "git+https://github.com/HumanSecurity/flast.git"
},
"keywords": [
"js",
Expand All @@ -22,16 +22,16 @@
"author": "Ben Baryo (ben.baryo@humansecurity.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PerimeterX/flast/issues"
"url": "https://github.com/HumanSecurity/flast/issues"
},
"homepage": "https://github.com/PerimeterX/flast#readme",
"homepage": "https://github.com/HumanSecurity/flast#readme",
"dependencies": {
"escodegen": "npm:@javascript-obfuscator/escodegen",
"eslint-scope": "^8.3.0",
"espree": "^10.3.0"
"eslint-scope": "^8.4.0",
"espree": "^10.4.0"
},
"devDependencies": {
"eslint": "^9.26.0",
"eslint": "^9.34.0",
"husky": "^9.1.7"
}
}