-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.83 KB
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
55
56
57
58
59
60
61
62
{
"name": "js-confuser",
"version": "2.1.2",
"description": "JavaScript Obfuscation Tool.",
"main": "dist/index.js",
"types": "index.d.ts",
"scripts": {
"build": "tsc --noEmit && babel src --out-dir dist --extensions \".ts,.tsx\"",
"dev": "node babel.register.js",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage --coverageReporters=html",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"keywords": [
"obfuscator",
"obfuscation",
"uglify",
"code protection",
"javascript obfuscator",
"js obfuscator"
],
"author": "MichaelXF",
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.28.0",
"@babel/parser": "^7.28.0",
"@babel/traverse": "^7.28.0",
"@babel/types": "^7.28.2",
"lz-string": "^1.5.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@babel/register": "^7.24.6",
"@eslint/js": "^9.9.0",
"@types/babel__core": "^7.20.5",
"@types/jest": "^29.5.14",
"@types/node": "^22.2.0",
"babel-plugin-replace-import-extension": "^1.1.5",
"cross-env": "^10.1.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/MichaelXF/js-confuser"
},
"bugs": {
"url": "https://github.com/MichaelXF/js-confuser/issues"
},
"homepage": "https://js-confuser.com",
"engines": {
"node": ">=18.0.0"
}
}