-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.79 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.79 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
{
"name": "webpack-obfuscator",
"version": "3.6.1",
"description": "javascript-obfuscator plugin for Webpack@5",
"keywords": [
"obfuscator",
"obfuscation",
"uglify",
"crush",
"code protection",
"javascript obfuscator",
"js obfuscator",
"webpack obfuscator"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"multi-stage-sourcemap": "^0.3.1",
"multimatch": "^5.0.0"
},
"peerDependencies": {
"javascript-obfuscator": "^4.0.0 || ^5.0.0",
"webpack": "^5.1.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^22.10.2",
"javascript-obfuscator": "^5.0.1",
"jest": "^30.2.0",
"memfs": "^4.51.1",
"source-map": "^0.7.6",
"ts-jest": "^29.4.6",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascript-obfuscator/webpack-obfuscator.git"
},
"scripts": {
"setup": "npm install",
"build": "npx tsc",
"watch": "npx tsc -w",
"test": "npm run build && jest",
"test:watch": "npm run build && jest --watch",
"test:coverage": "npm run build && jest --coverage",
"test:plugin": "npm run build && npx webpack --config test/config/javascript-obfuscator-plugin.config.js",
"test:loader": "npm run build && npx webpack --config test/config/javascript-obfuscator-loader.config.js"
},
"author": {
"name": "Timofey Kachalov"
},
"license": "BSD-2-Clause",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/javascript-obfuscator"
}
}