forked from javascript-obfuscator/webpack-obfuscator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "webpack-obfuscator",
"version": "0.15.0",
"description": "javascript-obfuscator plugin for Webpack",
"keywords": [
"obfuscator",
"obfuscation",
"uglify",
"crush",
"code protection",
"javascript obfuscator",
"js obfuscator",
"webpack obfuscator"
],
"main": "index.js",
"dependencies": {
"javascript-obfuscator": "0.15.0",
"multi-stage-sourcemap": "0.2.1",
"multimatch": "2.1.0"
},
"devDependencies": {
"@types/node": "8.0.47",
"@types/webpack": "3.0.14",
"typescript": "2.6.1",
"typings": "2.1.1",
"webpack": "3.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascript-obfuscator/webpack-obfuscator.git"
},
"scripts": {
"build": "npm run tsc",
"watch": "npm run tsc:w",
"tsc": "tsc",
"tsc:w": "tsc -w",
"typings": "node_modules/.bin/typings install",
"test": "$(npm bin)/webpack --config test/config/webpack.config.js"
},
"author": {
"name": "Timofey Kachalov"
},
"license": "BSD-2-Clause"
}