File tree 4 files changed +12
-3
lines changed
browser/ambient/javascript-obfuscator
main/ambient/javascript-obfuscator
4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 22
22
"multimatch" : " ^2.0.0" ,
23
23
"through2" : " ^2.0.0" ,
24
24
"webpack-core" : " ^0.6.8" ,
25
- "typescript" : " ^1.8.10"
25
+ "typescript" : " ^1.8.10" ,
26
+ "typings" : " ^0.8.1"
26
27
},
27
28
"repository" : {
28
29
"type" : " git" ,
29
30
"url" : " git+https://github.com/sanex3339/webpack-obfuscator.git"
30
31
},
31
32
"scripts" : {
33
+ "start" : " concurrent \" npm run tsc:w\" \" npm run lite\" " ,
34
+ "lite" : " lite-server" ,
32
35
"tsc" : " tsc" ,
33
36
"tsc:w" : " tsc -w" ,
34
- "lite" : " lite-server" ,
35
- "start" : " concurrent \" npm run tsc:w\" \" npm run lite\" "
37
+ "typings" : " node_modules/.bin/typings install"
36
38
},
37
39
"author" : {
38
40
"name" : " Timofey Kachalov"
Original file line number Diff line number Diff line change 9
9
"noImplicitAny" : false
10
10
},
11
11
"exclude" : [
12
+ " node_modules" ,
12
13
" typings/browser" ,
13
14
" typings/browser.d.ts"
14
15
]
Original file line number Diff line number Diff line change @@ -12,8 +12,11 @@ declare module 'javascript-obfuscator' {
12
12
debugProtectionInterval ?: boolean ;
13
13
disableConsoleOutput ?: boolean ;
14
14
encodeUnicodeLiterals ?: boolean ;
15
+ reservedNames ?: string [ ] ;
15
16
rotateUnicodeArray ?: boolean ;
17
+ selfDefending ?: boolean ;
16
18
unicodeArray ?: boolean ;
19
+ unicodeArrayThreshold ?: number ;
17
20
wrapUnicodeArrayCalls ?: boolean ;
18
21
[ id : string ] : any ;
19
22
}
Original file line number Diff line number Diff line change @@ -12,8 +12,11 @@ declare module 'javascript-obfuscator' {
12
12
debugProtectionInterval ?: boolean ;
13
13
disableConsoleOutput ?: boolean ;
14
14
encodeUnicodeLiterals ?: boolean ;
15
+ reservedNames ?: string [ ] ;
15
16
rotateUnicodeArray ?: boolean ;
17
+ selfDefending ?: boolean ;
16
18
unicodeArray ?: boolean ;
19
+ unicodeArrayThreshold ?: number ;
17
20
wrapUnicodeArrayCalls ?: boolean ;
18
21
[ id : string ] : any ;
19
22
}
You can’t perform that action at this time.
0 commit comments