forked from javascript-obfuscator/javascript-obfuscator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
137 lines (137 loc) · 3.9 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
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "javascript-obfuscator",
"version": "1.10.0",
"description": "JavaScript obfuscator",
"keywords": [
"obfuscator",
"obfuscation",
"uglify",
"crush",
"code protection",
"javascript obfuscator",
"js obfuscator"
],
"engines": {
"node": ">=10"
},
"main": "dist/index.js",
"browser": "dist/index.browser.js",
"bin": {
"javascript-obfuscator": "./bin/javascript-obfuscator"
},
"types": "index.d.ts",
"dependencies": {
"@gradecam/tsenum": "1.2.0",
"@nuxtjs/opencollective": "0.2.2",
"acorn": "7.4.0",
"chalk": "4.1.0",
"chance": "1.1.6",
"class-validator": "0.12.2",
"commander": "6.0.0",
"escodegen": "2.0.0",
"eslint-scope": "5.1.0",
"estraverse": "5.2.0",
"eventemitter3": "4.0.4",
"fast-deep-equal": "3.1.3",
"inversify": "5.0.1",
"js-string-escape": "1.0.1",
"md5": "2.3.0",
"mkdirp": "1.0.4",
"multimatch": "4.0.0",
"reflect-metadata": "0.1.13",
"source-map-support": "0.5.19",
"string-template": "1.0.0",
"tslib": "2.0.0"
},
"resolutions": {
"eslint-scope/esrecurse/estraverse": "5.2.0"
},
"devDependencies": {
"@types/chai": "4.2.12",
"@types/chance": "1.1.0",
"@types/escodegen": "0.0.6",
"@types/eslint-scope": "3.7.0",
"@types/estraverse": "5.1.0",
"@types/estree": "0.0.44",
"@types/md5": "2.2.0",
"@types/mkdirp": "1.0.1",
"@types/mocha": "8.0.1",
"@types/multimatch": "4.0.0",
"@types/node": "14.0.27",
"@types/rimraf": "3.0.0",
"@types/sinon": "9.0.4",
"@types/string-template": "1.0.2",
"@types/webpack-env": "1.15.2",
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"chai": "4.2.0",
"coveralls": "3.1.0",
"eslint": "7.6.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsdoc": "30.2.1",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prefer-arrow": "1.2.2",
"eslint-plugin-unicorn": "21.0.0",
"fork-ts-checker-notifier-webpack-plugin": "3.0.0",
"fork-ts-checker-webpack-plugin": "5.0.14",
"mocha": "8.1.1",
"nyc": "15.1.0",
"pjson": "1.0.9",
"pre-commit": "1.2.2",
"rimraf": "3.0.2",
"sinon": "9.0.2",
"threads": "1.6.3",
"ts-loader": "8.0.2",
"ts-node": "8.10.2",
"typescript": "3.9.7",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"webpack-node-externals": "2.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javascript-obfuscator/javascript-obfuscator.git"
},
"homepage": "https://obfuscator.io/",
"scripts": {
"start": "scripts/start",
"webpack:prod": "scripts/webpack-prod",
"webpack:dev": "scripts/webpack-dev",
"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:mocha-memory-performance": "scripts/test-mocha-memory-performance",
"test:removeTmpDir": "scripts/test-remove-tmp-dir",
"test": "scripts/test",
"eslint": "scripts/eslint",
"travis": "scripts/travis",
"git:addFiles": "scripts/git-add-files",
"postinstall": "opencollective || exit 0"
},
"pre-commit": [
"build",
"git:addFiles"
],
"author": {
"name": "Timofey Kachalov"
},
"contributors": [
"Timofey Kachalov (https://github.com/sanex3339)",
"Dmitry Zamotkin (https://github.com/zamotkin)"
],
"license": "BSD-2-Clause",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/javascript-obfuscator"
},
"collective": {
"url": "https://opencollective.com/javascript-obfuscator"
}
}