jscrambler-metro-plugin 6.4.21 → 6.4.24

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/LICENSE +22 -0
  2. package/package.json +19 -5
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jscrambler-metro-plugin",
3
- "version": "6.4.21",
3
+ "version": "6.4.24",
4
4
  "description": "A plugin to use metro with Jscrambler",
5
5
  "main": "lib/index.js",
6
6
  "peerDependencies": {
@@ -9,14 +9,28 @@
9
9
  "dependencies": {
10
10
  "commander": "^2.20.0",
11
11
  "fs-extra": "^8.0.1",
12
- "jscrambler": "^6.4.21"
12
+ "jscrambler": "6.4.24"
13
13
  },
14
14
  "keywords": [
15
15
  "jscrambler",
16
16
  "javascript",
17
17
  "react-native",
18
- "metro"
18
+ "metro",
19
+ "obfuscate",
20
+ "protect",
21
+ "js"
22
+ ],
23
+ "files": [
24
+ "lib"
19
25
  ],
20
26
  "author": "Jscrambler <support@jscrambler.com>",
21
- "license": "MIT"
22
- }
27
+ "license": "MIT",
28
+ "publishConfig": {
29
+ "access": "public",
30
+ "registry": "https://registry.npmjs.org/"
31
+ },
32
+ "scripts": {
33
+ "eslint": "eslint lib/",
34
+ "eslint:fix": "pnpm run eslint --fix"
35
+ }
36
+ }