备份: 完整开发状态(含反混淆脚本和临时文件)
This commit is contained in:
22
node_modules/@javascript-obfuscator/escodegen/CHANGELOG.md
generated
vendored
Normal file
22
node_modules/@javascript-obfuscator/escodegen/CHANGELOG.md
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
v2.2.2
|
||||
---
|
||||
* Fixed precedence of `export default` IIFE
|
||||
*
|
||||
v2.2.1
|
||||
---
|
||||
* Fixed generation of private identifier names
|
||||
|
||||
v2.2.0
|
||||
---
|
||||
* Added support for ES2022 class fields and private properties
|
||||
|
||||
v2.1.1
|
||||
---
|
||||
* Removed `bin` section from `package.json`
|
||||
|
||||
v2.1.0
|
||||
---
|
||||
* Created the fork of `escodegen` for `javascript-obfuscator` package
|
||||
* `nullish-coalescing` support. Original PR: https://github.com/estools/escodegen/pull/417
|
||||
* `bigint` and `numeric-separators` support. Original PR: https://github.com/estools/escodegen/pull/421
|
||||
* Support for `exported` field of `ExportAllDeclaration` node. Original PR: https://github.com/estools/escodegen/pull/420
|
||||
21
node_modules/@javascript-obfuscator/escodegen/LICENSE.BSD
generated
vendored
Normal file
21
node_modules/@javascript-obfuscator/escodegen/LICENSE.BSD
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
Copyright (C) 2012 Yusuke Suzuki (twitter: @Constellation) and other contributors.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
31
node_modules/@javascript-obfuscator/escodegen/README.md
generated
vendored
Normal file
31
node_modules/@javascript-obfuscator/escodegen/README.md
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
## `escodegen` fork for `javascript-obfuscator` package
|
||||
|
||||
See: https://github.com/javascript-obfuscator/javascript-obfuscator/issues/795
|
||||
|
||||
### License
|
||||
|
||||
#### Escodegen
|
||||
|
||||
Copyright (C) 2012 [Yusuke Suzuki](http://github.com/Constellation)
|
||||
(twitter: [@Constellation](http://twitter.com/Constellation)) and other contributors.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in the
|
||||
documentation and/or other materials provided with the distribution.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
2736
node_modules/@javascript-obfuscator/escodegen/escodegen.js
generated
vendored
Normal file
2736
node_modules/@javascript-obfuscator/escodegen/escodegen.js
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
60
node_modules/@javascript-obfuscator/escodegen/package.json
generated
vendored
Normal file
60
node_modules/@javascript-obfuscator/escodegen/package.json
generated
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
{
|
||||
"name": "@javascript-obfuscator/escodegen",
|
||||
"description": "`escodegen` fork for `javascript-obfuscator``",
|
||||
"homepage": "http://github.com/estools/escodegen",
|
||||
"main": "escodegen.js",
|
||||
"files": [
|
||||
"LICENSE.BSD",
|
||||
"README.md",
|
||||
"bin",
|
||||
"escodegen.js",
|
||||
"package.json"
|
||||
],
|
||||
"version": "2.3.0",
|
||||
"engines": {
|
||||
"node": ">=6.0"
|
||||
},
|
||||
"maintainers": [
|
||||
{
|
||||
"name": "Yusuke Suzuki",
|
||||
"email": "utatane.tea@gmail.com",
|
||||
"web": "http://github.com/Constellation"
|
||||
},
|
||||
{
|
||||
"name": "Timofey Kachalov",
|
||||
"email": "sanex3339@yandex.ru",
|
||||
"web": "https://github.com/sanex3339"
|
||||
}
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "http://github.com/estools/escodegen.git"
|
||||
},
|
||||
"dependencies": {
|
||||
"@javascript-obfuscator/estraverse": "^5.3.0",
|
||||
"esutils": "^2.0.2",
|
||||
"esprima": "^4.0.1",
|
||||
"optionator": "^0.8.1"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
"source-map": "~0.6.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"acorn": "^8.7.0",
|
||||
"bluebird": "^3.4.7",
|
||||
"bower-registry-client": "^1.0.0",
|
||||
"chai": "^4.2.0",
|
||||
"chai-exclude": "^2.0.2",
|
||||
"commonjs-everywhere": "^0.9.7",
|
||||
"gulp": "^3.8.10",
|
||||
"gulp-eslint": "^3.0.1",
|
||||
"gulp-mocha": "^3.0.1",
|
||||
"semver": "^5.1.0"
|
||||
},
|
||||
"license": "BSD-2-Clause",
|
||||
"scripts": {
|
||||
"test": "gulp travis",
|
||||
"unit-test": "gulp test",
|
||||
"lint": "gulp lint"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user