-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
32 lines (32 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "javascript-code-protection-example",
"version": "0.0.1",
"description": "An example of JavaScript code protection",
"main": "index.js",
"scripts": {
"obfuscate": "javascript-obfuscator index.js --string-array-encoding rc4",
"bytenode": "bytenode --compile index-obfuscated.js",
"bytenode:run": "bytenode index-obfuscated.js",
"nodec": "nodec build.js --skip-npm-install",
"build": "npm run obfuscate && npm run bytenode && npm run nodec",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iWinston/javascript-code-protection-example.git"
},
"keywords": [
"JavaScript",
"code protection"
],
"author": "Winston Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/iWinston/javascript-code-protection-example/issues"
},
"homepage": "https://github.com/iWinston/javascript-code-protection-example#readme",
"devDependencies": {
"bytenode": "^1.1.1",
"javascript-obfuscator": "^0.18.1"
}
}