-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "obfuscator-loader",
"version": "1.1.4",
"description": "A webpack loader for obfuscating single modules using javascript-obfuscator",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"linter": "eslint lib/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakplus/obfuscator-loader.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"webpack",
"obfuscator",
"webpack",
"loader",
"javascript-obfuscator"
],
"author": {
"name": "Valerio Bianchi",
"email": "[email protected]",
"url": "https://valeriobianchi.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/zakplus/obfuscator-loader/issues"
},
"homepage": "https://github.com/zakplus/obfuscator-loader#readme",
"dependencies": {
"esprima": "^4.0.0",
"javascript-obfuscator": "^0.24.0",
"loader-utils": "^1.1.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.10.0"
}
}