-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 965 Bytes
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
{
"name": "pyritejs",
"version": "1.0.0",
"description": "A VM-based JavaScript obfuscator built on the PyRite compiler. Compiles PyRite source code to JSON bytecode, runs it in a JavaScript VM, and obfuscates the bundle for deployment.",
"main": "src/index.js",
"bin": {
"pyritejs": "build.js"
},
"scripts": {
"build:counter": "node build.js examples/counter/counter.prc.json --output examples/counter/counter.bundle.js --shuffle --seed 42",
"test": "node tests/run_all.js",
"test:vm": "node tests/test_vm_hello.js && node tests/test_vm_add.js && node tests/test_vm_closure.js && node tests/test_vm_loop.js && node tests/test_vm_list.js",
"test:bridge": "node tests/test_bridge.js",
"test:counter": "node tests/test_counter.js"
},
"keywords": [
"pyrite",
"vm",
"obfuscation",
"bytecode",
"javascript",
"compiler"
],
"author": "PyRiteJS Contributors",
"license": "MIT",
"dependencies": {}
}