jscrambler-metro-plugin 8.4.15-next.3 → 8.4.15

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/LICENSE +22 -0
  2. package/README.md +8 -3
  3. package/package.json +8 -8
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2014 Jscrambler
2
+
3
+ Permission is hereby granted, free of charge, to any person
4
+ obtaining a copy of this software and associated documentation
5
+ files (the "Software"), to deal in the Software without
6
+ restriction, including without limitation the rights to use,
7
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the
9
+ Software is furnished to do so, subject to the following
10
+ conditions:
11
+
12
+ The above copyright notice and this permission notice shall be
13
+ included in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
+ OTHER DEALINGS IN THE SOFTWARE.
package/README.md CHANGED
@@ -1,8 +1,11 @@
1
- # Jscrambler Metro Plugin
1
+ # ![Jscrambler](https://media.jscrambler.com/images/logo_500px.png)
2
+ # Jscrambler Code Integrity for React-Native (Metro Bundler)
2
3
 
3
- This metro plugin protects your **React Native** bundle using Jscrambler.
4
+ Jscrambler [Code Integrity](https://jscrambler.com/code-integrity) is a JavaScript protection technology for Web and Mobile Applications. Its main purpose is to enable JavaScript applications to become self-defensive and resilient to tampering and reverse engineering.
5
+
6
+ If you're looking to gain control over third-party tags and achieve PCI DSS compliance please refer to Jscrambler [Webpage Integrity](https://jscrambler.com/webpage-integrity).
4
7
 
5
- # Version Compatibility
8
+ Version Compatibility
6
9
  ------------------------------------------------------------------------------
7
10
 
8
11
  The version's compatibility table match your [Jscrambler Version](https://app.jscrambler.com/settings) with the Jscrambler Metro Plugin.
@@ -15,6 +18,8 @@ Please make sure you install the right version, otherwise some functionalities m
15
18
 
16
19
  # Usage
17
20
 
21
+ This metro plugin protects your **React Native** bundle using Jscrambler.
22
+
18
23
  Include the plugin in your `metro.config.js` and add the following code:
19
24
 
20
25
  ```js
package/package.json CHANGED
@@ -1,19 +1,15 @@
1
1
  {
2
2
  "name": "jscrambler-metro-plugin",
3
- "version": "8.4.15-next.3",
4
- "description": "A plugin to use metro with Jscrambler",
3
+ "version": "8.4.15",
4
+ "description": "A plugin to use metro with Jscrambler Code Integrity",
5
5
  "exports": "./lib/index.js",
6
- "scripts": {
7
- "eslint": "eslint lib/",
8
- "eslint:fix": "pnpm run eslint --fix"
9
- },
10
6
  "peerDependencies": {
11
7
  "metro-source-map": "0.x"
12
8
  },
13
9
  "dependencies": {
14
10
  "commander": "^2.20.0",
15
11
  "fs-extra": "^8.0.1",
16
- "jscrambler": "workspace:*"
12
+ "jscrambler": "8.7.1"
17
13
  },
18
14
  "keywords": [
19
15
  "jscrambler",
@@ -37,5 +33,9 @@
37
33
  "publishConfig": {
38
34
  "access": "public",
39
35
  "registry": "https://registry.npmjs.org/"
36
+ },
37
+ "scripts": {
38
+ "eslint": "eslint lib/",
39
+ "eslint:fix": "pnpm run eslint --fix"
40
40
  }
41
- }
41
+ }