-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"author": "frime",
"dependencies": {
"@unicode/unicode-14.0.0": "^1.3.1",
"chalk": "^5.0.1",
"chalk-animation": "^2.0.3",
"chance": "^1.1.7",
"cli-highlight": "^2.1.11",
"colors": "^1.4.0",
"diff": "^5.1.0",
"figlet": "^1.5.2",
"genex": "^1.1.0",
"glob": "^8.0.3",
"huffman-ts": "^0.1.3",
"is-valid-identifier": "^2.0.2",
"itt": "^0.7.3",
"jsesc": "^2.5.2",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"punycode": "^2.1.1",
"regenerate": "^1.4.2",
"regexgen": "^1.3.0",
"uglify-js": "^3.17.1",
"utf8": "^3.0.0",
"voca": "^1.4.0",
"wtf-8": "^1.0.1",
"xregexp": "^5.1.1",
"yargs": "^17.5.1"
},
"description": "A better version of jjencode using all ASCII symbol characters, and modern JavaScript syntax. This CLI-based program is STRICTLY for experimentation ONLY and SHALL NEVER be used for production or generation of malicious code.",
"directories": {
"doc": "docs",
"test": "tests"
},
"keywords": [],
"license": "ISC",
"main": "index.js",
"name": "punkscript",
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5"
},
"scripts": {
"test": "node src/obfuscate.js && node test.js",
"build": "uglifyjs src/obfuscate-new.js -o dist/obfuscate-new.js -c -m"
},
"version": "1.0.0"
}