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
88 lines (88 loc) · 2.31 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.31 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
{
"name": "javascript-obfuscator",
"version": "0.8.0-dev.1",
"description": "JavaScript obfuscator",
"keywords": [
"obfuscator",
"obfuscation",
"uglify",
"crush",
"code protection",
"javascript obfuscator",
"js obfuscator"
],
"engines": {
"node": ">=0.12.0",
"iojs": ">=1.0.0"
},
"main": "dist/index.js",
"bin": {
"javascript-obfuscator": "./bin/javascript-obfuscator.js"
},
"dependencies": {
"babel-polyfill": "^6.13.0",
"chance": "^1.0.4",
"class-validator": "^0.6.0",
"commander": "^2.9.0",
"escodegen": "^1.8.1",
"esprima": "^3.0.0",
"estraverse": "^4.2.0",
"format-unicorn": "^1.1.0",
"mkdirp": "^0.5.1",
"optimize-js": "^1.0.1",
"source-map-support": "^0.4.2"
},
"devDependencies": {
"@types/chai": "^3.4.32",
"@types/chance": "^0.7.28",
"@types/commander": "^2.3.29",
"@types/escodegen": "^0.0.5",
"@types/esprima": "^2.1.31",
"@types/estraverse": "^0.0.5",
"@types/estree": "^0.0.32",
"@types/format-unicorn": "^0.0.28",
"@types/joi": "^9.0.31",
"@types/mkdirp": "^0.3.28",
"@types/mocha": "^2.2.31",
"@types/node": "^4.0.30",
"@types/sinon": "^1.16.29",
"babel-cli": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"istanbul": "1.1.0-alpha.1",
"mocha": "^3.0.2",
"optimize-js-plugin": "0.0.4",
"sinon": "^2.0.0-pre.3",
"ts-loader": "^0.8.2",
"ts-node": "^1.3.0",
"tslint": "^3.15.1",
"typescript": "^2.0.0",
"webpack": "^2.1.0-beta.25",
"webpack-node-externals": "^1.4.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sanex3339/javascript-obfuscator.git"
},
"scripts": {
"start": "scripts/start",
"webpack": "scripts/webpack",
"build": "scripts/build",
"watch": "scripts/watch",
"test:compile": "scripts/test-compile",
"test:dev": "scripts/test-dev",
"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"
},
"author": {
"name": "Timofey Kachalov"
},
"license": "BSD-2-Clause"
}