-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "picky-obfuscator",
"version": "1.0.3",
"description": "Webpack plugin that gives you ability to only obfuscate selected part of your code",
"scripts": {
"build": "tsc ./src/pickyObfuscator.ts --declaration --outDir ./dist",
"e": "eslint --init",
"test": "npm run build && webpack --mode=production --node-env=production && node ./test/test.js"
},
"keywords": [
"picky",
"obfuscator",
"webpack",
"plugin",
"javascript"
],
"author": "Terncode",
"license": "MIT",
"dependencies": {
"javascript-obfuscator": "^4.0.0",
"webpack": "^5.73.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"@webpack-cli/generators": "^2.5.0",
"eslint": "^8.20.0",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4",
"webpack-cli": "^4.10.0"
},
"main": "./dist/pickyObfuscator.js",
"directories": {
"dist": "dist",
"src": "src"
},
"files": [
"dist/*",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Terncode/picky-js-obfuscator.git"
},
"bugs": {
"url": "https://github.com/Terncode/picky-js-obfuscator/issues"
},
"homepage": "https://github.com/Terncode/picky-js-obfuscator#readme"
}