-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.18 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
{
"name": "jeffuscator",
"version": "1.2.3",
"description": "Obfuscate JavaScript by renaming all variables and methods to different variations of 'Jeff'.",
"main": "src/Jeffuscator.js",
"scripts": {
"test": "nyc mocha",
"test-report-coverage": "npm test && nyc report --reporter lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"bin": {
"jeffuscate": "./cli.js"
},
"engines": {
"node": "8.9.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChrGriffin/jeffuscator.git"
},
"keywords": [
"obfuscator",
"obfuscate",
"obfuscation",
"js",
"javascript",
"elon",
"musk",
"evil"
],
"author": "Christian Griffin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChrGriffin/jeffuscator/issues"
},
"homepage": "https://github.com/ChrGriffin/jeffuscator#readme",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"nyc": "^13.1.0",
"mocha": "^5.2.0"
},
"dependencies": {
"commander": "^2.19.0",
"fs-extra": "^7.0.1",
"mime-types": "^2.1.21",
"uglify-js": "github:ChrGriffin/UglifyJS"
}
}