forked from javascript-obfuscator/javascript-obfuscator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.08 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.08 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "javascript-obfuscator",
"version": "0.12.2",
"description": "JavaScript obfuscator",
"keywords": [
"obfuscator",
"obfuscation",
"uglify",
"crush",
"code protection",
"javascript obfuscator",
"js obfuscator"
],
"engines": {
"node": ">=4.3.0"
},
"main": "dist/index.js",
"bin": {
"javascript-obfuscator": "./bin/javascript-obfuscator.js"
},
"dependencies": {
"chalk": "2.3.0",
"chance": "1.0.12",
"class-validator": "0.7.3",
"commander": "2.11.0",
"escodegen-wallaby": "1.6.14",
"esmangle": "1.0.1",
"esprima": "4.0.0",
"estraverse": "4.2.0",
"inversify": "4.5.1",
"md5": "2.2.1",
"mkdirp": "0.5.1",
"opencollective": "1.0.3",
"reflect-metadata": "0.1.10",
"source-map-support": "0.5.0",
"string-template": "1.0.0",
"tslib": "1.8.0"
},
"devDependencies": {
"@types/chai": "4.0.5",
"@types/chance": "0.7.35",
"@types/commander": "2.11.0",
"@types/escodegen": "0.0.6",
"@types/esprima": "4.0.1",
"@types/estraverse": "0.0.6",
"@types/estree": "0.0.38",
"@types/md5": "2.1.32",
"@types/mkdirp": "0.5.1",
"@types/mocha": "2.2.44",
"@types/node": "8.0.53",
"@types/sinon": "4.0.0",
"@types/string-template": "1.0.2",
"@types/webpack-env": "1.13.2",
"awesome-typescript-loader": "3.4.0",
"babel-cli": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-array-includes": "2.0.3",
"babel-preset-es2015": "6.24.1",
"chai": "4.1.2",
"coveralls": "2.13.3",
"istanbul": "1.1.0-alpha.1",
"mocha": "4.0.1",
"pre-commit": "1.2.2",
"sinon": "4.1.2",
"ts-node": "3.3.0",
"tslint": "5.8.0",
"tslint-eslint-rules": "4.1.1",
"tslint-language-service": "0.9.6",
"tslint-webpack-plugin": "1.0.0",
"typescript": "2.6.1",
"webpack": "3.8.1",
"webpack-node-externals": "1.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascript-obfuscator/javascript-obfuscator.git"
},
"scripts": {
"start": "scripts/start",
"webpack": "scripts/webpack",
"build": "scripts/build",
"watch": "scripts/watch",
"removeCacheDir": "scripts/remove-cache-dir",
"test:compile": "scripts/test-compile",
"test:dev": "scripts/test-dev",
"test:devCompilePerformance": "scripts/test-dev-compile-performance",
"test:devRuntimePerformance": "scripts/test-dev-runtime-performance",
"test:full": "scripts/test-full",
"test:coveralls": "scripts/test-coveralls",
"test:mocha": "scripts/test-mocha",
"test:removeTmpDir": "scripts/test-remove-tmp-dir",
"test": "scripts/test",
"tslint": "scripts/tslint",
"travis": "scripts/travis",
"git:addFiles": "scripts/git-add-files",
"postinstall": "opencollective postinstall"
},
"pre-commit": [
"build",
"git:addFiles"
],
"author": {
"name": "Timofey Kachalov"
},
"license": "BSD-2-Clause",
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/javascript-obfuscator",
"logo": "https://opencollective.com/opencollective/logo.txt"
}
}