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
83 lines (83 loc) · 2.18 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.18 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
{
"name": "javascript-obfuscator",
"version": "0.7.0-dev.0",
"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.9.1",
"chance": "^1.0.3",
"class-validator": "^0.5.0-alpha.3",
"commander": "^2.9.0",
"escodegen": "^1.8.0",
"esprima": "^2.7.2",
"estraverse": "^4.2.0",
"mkdirp": "^0.5.1",
"source-map-support": "^0.4.1"
},
"devDependencies": {
"@types/chai": "^3.4.27-alpha",
"@types/chance": "^0.7.27-alpha",
"@types/esprima": "^2.1.27-alpha",
"@types/joi": "^6.5.27-alpha",
"@types/mkdirp": "^0.3.27-alpha",
"@types/mocha": "^2.2.26-alpha",
"@types/node": "^4.0.28-alpha",
"@types/sinon": "^1.16.25-alpha",
"babel-cli": "^6.10.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"chai-members-deep": "^1.1.0",
"coveralls": "^2.11.9",
"istanbul": "1.1.0-alpha.1",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"ts-loader": "^0.8.2",
"ts-node": "^0.9.3",
"tslint": "^3.13.0",
"typescript": "^2.0.0",
"typings": "^1.3.1",
"webpack": "^2.1.0-beta.15",
"webpack-node-externals": "^1.2.0"
},
"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",
"typings": "scripts/typings"
},
"author": {
"name": "Timofey Kachalov"
},
"license": "BSD-2-Clause"
}